Skip to content

Instantly share code, notes, and snippets.

@joepie91
Created March 12, 2019 12:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save joepie91/2f9b0fa228c2f3ac6cd70dc88558156d to your computer and use it in GitHub Desktop.
Save joepie91/2f9b0fa228c2f3ac6cd70dc88558156d to your computer and use it in GitHub Desktop.
{ 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