nixpkgs/pkgs/applications/misc/gremlin-console/default.nix

32 lines
967 B
Nix
Raw Normal View History

{ fetchzip, lib, stdenv, makeWrapper, openjdk }:
2018-09-29 09:21:09 +02:00
stdenv.mkDerivation rec {
pname = "gremlin-console";
2021-05-12 22:24:09 +02:00
version = "3.5.0";
2018-09-29 09:21:09 +02:00
src = fetchzip {
2021-05-12 22:24:09 +02:00
url = "https://downloads.apache.org/tinkerpop/${version}/apache-tinkerpop-gremlin-console-${version}-bin.zip";
sha256 = "sha256-aVhDbOYhgYaWjttGjJvBKbov7OGWh2/llBTePFPGXDM=";
2018-09-29 09:21:09 +02:00
};
nativeBuildInputs = [ makeWrapper ];
2018-09-29 09:21:09 +02:00
installPhase = ''
runHook preInstall
2018-09-29 09:21:09 +02:00
mkdir -p $out/opt
cp -r ext lib $out/opt/
install -D bin/gremlin.sh $out/opt/bin/gremlin-console
makeWrapper $out/opt/bin/gremlin-console $out/bin/gremlin-console \
--prefix PATH ":" "${openjdk}/bin/" \
--set CLASSPATH "$out/opt/lib/"
runHook postInstall
2018-09-29 09:21:09 +02:00
'';
meta = with lib; {
homepage = "https://tinkerpop.apache.org/";
2018-09-29 09:21:09 +02:00
description = "Console of the Apache TinkerPop graph computing framework";
license = licenses.asl20;
maintainers = [ maintainers.lewo ];
platforms = platforms.all;
};
}