-
-
Save joepie91/2f9b0fa228c2f3ac6cd70dc88558156d to your computer and use it in GitHub Desktop.
This file contains 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
{ pkgs ? import <nixpkgs> {} }: | |
with pkgs; | |
let | |
nodejs_0_10 = import ./nix-shell/nodejs_0_10.nix pkgs; | |
manatee = import ./nix-shell/manatee.nix pkgs; | |
in stdenv.mkDerivation rec { | |
name = "development-environment"; | |
buildInputs = [ | |
gcc5 | |
nodejs_0_10 | |
manatee | |
ruby | |
libjpeg | |
]; | |
LD_LIBRARY_PATH = stdenv.lib.makeLibraryPath buildInputs; | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment