44 lines
1.3 KiB
Nix
44 lines
1.3 KiB
Nix
{ stdenv, lib, fetchurl, nixosTests, makeWrapper, openjdk17, which, gawk }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "neo4j";
|
|
version = "5.18.1";
|
|
|
|
src = fetchurl {
|
|
url = "https://neo4j.com/artifact.php?name=neo4j-community-${version}-unix.tar.gz";
|
|
hash = "sha256-jNi8SK1Z8k6ZSc9aa+L+PhAKyes0Tv6mFuoKspZBEIk=";
|
|
};
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
installPhase = ''
|
|
mkdir -p "$out/share/neo4j"
|
|
cp -R * "$out/share/neo4j"
|
|
|
|
mkdir -p "$out/bin"
|
|
for NEO4J_SCRIPT in neo4j neo4j-admin cypher-shell
|
|
do
|
|
chmod +x "$out/share/neo4j/bin/$NEO4J_SCRIPT"
|
|
makeWrapper "$out/share/neo4j/bin/$NEO4J_SCRIPT" \
|
|
"$out/bin/$NEO4J_SCRIPT" \
|
|
--prefix PATH : "${lib.makeBinPath [ openjdk17 which gawk ]}" \
|
|
--set JAVA_HOME "${openjdk17}"
|
|
done
|
|
|
|
patchShebangs $out/share/neo4j/bin/neo4j-admin
|
|
|
|
# user will be asked to change password on first login
|
|
# password must be at least 8 characters long
|
|
$out/bin/neo4j-admin dbms set-initial-password neo4jadmin
|
|
'';
|
|
|
|
passthru.tests.nixos = nixosTests.neo4j;
|
|
|
|
meta = with lib; {
|
|
description = "A highly scalable, robust (fully ACID) native graph database";
|
|
homepage = "https://neo4j.com/";
|
|
license = licenses.gpl3;
|
|
maintainers = with maintainers; [ jonringer offline ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|