blob: af55e6ffb68bf9fe06c9554bff8e64cdbdb7069d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
{ stdenv, lib, fetchurl, nixosTests, makeWrapper, openjdk17, which, gawk }:
stdenv.mkDerivation rec {
pname = "neo4j";
version = "5.20.0";
src = fetchurl {
url = "https://neo4j.com/artifact.php?name=neo4j-community-${version}-unix.tar.gz";
hash = "sha256-IDIVdIQCcChx5RHG3/88Yvclh8ToDfcDv4VAhcQ20GY=";
};
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;
};
}
|