nixpkgs/pkgs/servers/nosql/neo4j/default.nix

39 lines
1,023 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, makeWrapper, jre, which, gawk }:
2014-08-16 21:53:03 +00:00
2021-01-15 07:07:56 +00:00
with lib;
2014-08-16 21:53:03 +00:00
stdenv.mkDerivation rec {
pname = "neo4j";
2019-12-24 00:50:52 +00:00
version = "3.5.14";
2014-08-16 21:53:03 +00:00
src = fetchurl {
2018-06-01 10:17:03 +00:00
url = "https://neo4j.com/artifact.php?name=neo4j-community-${version}-unix.tar.gz";
2019-12-24 00:50:52 +00:00
sha256 = "1zjb6cgk2lpzx6pq1cs5fh65in6b5ccpl1cgfiglgpjc948mnhzv";
2014-08-16 21:53:03 +00:00
};
nativeBuildInputs = [ makeWrapper ];
2014-08-16 21:53:03 +00:00
installPhase = ''
mkdir -p "$out/share/neo4j"
cp -R * "$out/share/neo4j"
mkdir -p "$out/bin"
for NEO4J_SCRIPT in neo4j neo4j-admin neo4j-import cypher-shell
2016-10-11 21:58:54 +00:00
do
makeWrapper "$out/share/neo4j/bin/$NEO4J_SCRIPT" \
"$out/bin/$NEO4J_SCRIPT" \
--prefix PATH : "${lib.makeBinPath [ jre which gawk ]}" \
--set JAVA_HOME "${jre}"
2016-10-11 21:58:54 +00:00
done
2014-08-16 21:53:03 +00:00
'';
meta = with lib; {
description = "A highly scalable, robust (fully ACID) native graph database";
homepage = "http://www.neo4j.org/";
2014-08-16 21:53:03 +00:00
license = licenses.gpl3;
maintainers = [ maintainers.offline ];
2021-01-15 07:07:56 +00:00
platforms = lib.platforms.unix;
2014-08-16 21:53:03 +00:00
};
}