nixpkgs/pkgs/by-name/go/gol/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

45 lines
1.3 KiB
Nix
Raw Normal View History

2024-06-06 14:21:38 +00:00
{ lib, maven, fetchFromGitHub, makeWrapper, jre }:
maven.buildMavenPackage rec {
pname = "gol";
version = "0.2.0";
src = fetchFromGitHub {
owner = "clarisma";
repo = "gol-tool";
rev = version;
hash = "sha256-F/tMRD+nWn/fRPX7cTan371zlOTxh7oR98wREmokULo=";
};
2024-07-03 23:09:14 +00:00
mvnHash = "sha256-6EX+y7/lGdB5LgW9MIER+KgvtPjvMCDjgq89f1g2GlY=";
2024-06-06 14:21:38 +00:00
mvnParameters = "compile assembly:single -Dmaven.test.skip=true";
nativeBuildInputs = [ makeWrapper ];
installPhase = ''
runHook preInstall
mkdir -p $out/{bin,lib}
2024-07-03 23:09:14 +00:00
cp target/gol-tool-${version}-jar-with-dependencies.jar $out/lib/gol-tool.jar
2024-06-06 14:21:38 +00:00
makeWrapper ${jre}/bin/java $out/bin/gol \
--add-flags "-cp $out/lib/gol-tool.jar" \
--add-flags "com.geodesk.gol.GolTool"
runHook postInstall
'';
meta = with lib; {
description = "Command-line utility for creating and managing Geographic Object Libraries";
longDescription = ''
Use the GOL command-line utility to:
- build and maintain Geographic Object Libraries (GeoDesk's compact database format for OpenStreetMap features)
- perform GOQL queries and export the results in a variety of formats.
'';
homepage = "https://docs.geodesk.com/gol";
license = licenses.agpl3Only;
maintainers = [ maintainers.starsep ];
platforms = platforms.all;
};
}