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