Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
41 lines
1.0 KiB
Nix
41 lines
1.0 KiB
Nix
{
|
|
fetchzip,
|
|
lib,
|
|
stdenv,
|
|
makeWrapper,
|
|
openjdk11,
|
|
}:
|
|
let
|
|
openjdk = openjdk11;
|
|
in
|
|
stdenv.mkDerivation rec {
|
|
pname = "gremlin-console";
|
|
version = "3.7.4";
|
|
src = fetchzip {
|
|
url = "https://downloads.apache.org/tinkerpop/${version}/apache-tinkerpop-gremlin-console-${version}-bin.zip";
|
|
sha256 = "sha256-Z971M4W359WKs2NjLeWej5IVHnFu5LLsffxl0jraB60=";
|
|
};
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
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
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://tinkerpop.apache.org/";
|
|
description = "Console of the Apache TinkerPop graph computing framework";
|
|
license = licenses.asl20;
|
|
maintainers = [ maintainers.lewo ];
|
|
platforms = platforms.all;
|
|
mainProgram = "gremlin-console";
|
|
};
|
|
}
|