Created
July 14, 2016 05:27
-
-
Save savannidgerinel/ce199ffe7752a4760cce7783a2488e7e to your computer and use it in GitHub Desktop.
nixos lua shell with packages
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
with import <nixpkgs> {}; | |
stdenv.mkDerivation rec { | |
name = "lua-env"; | |
env = buildEnv { name = name; paths = buildInputs; }; | |
buildInputs = [ lua5_2 lua52Packages.luasocket lua52Packages.luasec lua52Packages.cjson ]; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Here is the output of the script: