Created
June 2, 2014 09:46
-
-
Save chrisfarms/4449f69b2b8f5e7ca718 to your computer and use it in GitHub Desktop.
Minimal shell.nix with ruby package
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
let | |
pkgs = import <nixpkgs> {}; | |
stdenv = pkgs.stdenv; | |
in | |
{ | |
developmentEnv = stdenv.mkDerivation rec { | |
name = "developmentEnv"; | |
version = "nightly"; | |
src = ./.; | |
buildInputs = [ | |
pkgs.ruby18 | |
]; | |
}; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment