9 lines
150 B
Nix
9 lines
150 B
Nix
{ ruby, bundlerEnv }:
|
|
|
|
bundlerEnv {
|
|
name = "bundix";
|
|
inherit ruby;
|
|
gemset = ./gemset.nix;
|
|
gemfile = ./Gemfile;
|
|
lockfile = ./Gemfile.lock;
|
|
}
|