Start with bundlerEnv for the convert script

This commit is contained in:
Danila Fedorin 2022-03-27 15:58:51 -07:00
parent fcea49470c
commit 7915e20ed0
1 changed files with 10 additions and 0 deletions

10
default.nix Normal file
View File

@ -0,0 +1,10 @@
{ bundlerEnv, ruby }:
bundlerEnv {
inherit ruby;
name = "render-test";
gemfile = ./Gemfile;
lockfile = ./Gemfile.lock;
gemset = ./gemset.nix;
}