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

10 lines
150 B
Nix
Raw Normal View History

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