Skip to content

Instantly share code, notes, and snippets.

@chrisfarms
Created June 2, 2014 09:46
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 chrisfarms/4449f69b2b8f5e7ca718 to your computer and use it in GitHub Desktop.
Save chrisfarms/4449f69b2b8f5e7ca718 to your computer and use it in GitHub Desktop.
Minimal shell.nix with ruby package
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