nixpkgs/pkgs/development/tools/misc/travis/shell.nix

12 lines
171 B
Nix
Raw Normal View History

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