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