9 lines
141 B
Nix
9 lines
141 B
Nix
|
{ mkShell, bundler }:
|
||
|
|
||
|
mkShell {
|
||
|
buildInputs = [ bundler ];
|
||
|
shellHook = ''
|
||
|
bundle install --quiet --gemfile=fastlane/Gemfile
|
||
|
'';
|
||
|
}
|