mirror of
https://github.com/status-im/status-mobile.git
synced 2025-01-16 19:54:45 +00:00
9 lines
141 B
Nix
9 lines
141 B
Nix
|
{ mkShell, bundler }:
|
||
|
|
||
|
mkShell {
|
||
|
buildInputs = [ bundler ];
|
||
|
shellHook = ''
|
||
|
bundle install --quiet --gemfile=fastlane/Gemfile
|
||
|
'';
|
||
|
}
|