nixpkgs/pkgs/development/tools/misc/travis/shell.nix
2018-03-12 10:47:16 +00:00

12 lines
171 B
Nix

# Env to update Gemfile.lock / gemset.nix
with import <nixpkgs> {};
stdenv.mkDerivation {
name = "env";
buildInputs = [
ruby.devEnv
gnumake
bundix
];
}