mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-10 03:23:29 +03:00
neo4j: fix and enable strictDeps
neo4j-admin is a bash script.
This commit is contained in:
parent
1744aeacbb
commit
c08e5ee6d9
1 changed files with 3 additions and 0 deletions
|
@ -7,6 +7,7 @@
|
||||||
openjdk17,
|
openjdk17,
|
||||||
which,
|
which,
|
||||||
gawk,
|
gawk,
|
||||||
|
bashNonInteractive,
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
|
@ -19,6 +20,8 @@ stdenv.mkDerivation rec {
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ makeWrapper ];
|
nativeBuildInputs = [ makeWrapper ];
|
||||||
|
buildInputs = [ bashNonInteractive ];
|
||||||
|
strictDeps = true;
|
||||||
|
|
||||||
installPhase = ''
|
installPhase = ''
|
||||||
mkdir -p "$out/share/neo4j"
|
mkdir -p "$out/share/neo4j"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue