status-mobile/nix/mobile/android/maven-and-npm-deps/maven/shell.nix

19 lines
378 B
Nix

{ mkShell, curl, git, gradle, maven,
projectNodePackage, androidEnvShellHook, status-go }:
mkShell {
buildInputs = [
curl
git
gradle
maven
projectNodePackage
];
shellHook =
androidEnvShellHook +
status-go.shellHook + ''
$STATUS_REACT_HOME/nix/mobile/reset-node_modules.sh "${projectNodePackage}"
chmod -R u+w ./node_modules/
'';
}