nixpkgs/pkgs/development/interpreters/ruby/bundix/default.nix

10 lines
150 B
Nix
Raw Normal View History

2015-01-20 07:07:55 +01:00
{ ruby, bundlerEnv }:
bundlerEnv {
name = "bundix";
inherit ruby;
gemset = ./gemset.nix;
gemfile = ./Gemfile;
lockfile = ./Gemfile.lock;
}