Files
nixpkgs/pkgs/development/tools/misc/travis/shell.nix
T
2024-07-29 19:46:18 +02:00

13 lines
201 B
Nix

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