Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

gol: init at 0.2.0 #283537

Merged
merged 3 commits into from
Jun 6, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
44 changes: 44 additions & 0 deletions pkgs/by-name/go/gol/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
{ 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=";
};

mvnHash = "sha256-b0nkp23gv4kejac/xrvm3xWo3Z8if7zveNUHBg7ZBm4=";
mvnParameters = "compile assembly:single -Dmaven.test.skip=true";

nativeBuildInputs = [ makeWrapper ];

installPhase = ''
runHook preInstall

mkdir -p $out/{bin,lib}
cp /build/source/target/gol-tool-${version}-jar-with-dependencies.jar $out/lib/gol-tool.jar

makeWrapper ${jre}/bin/java $out/bin/gol \
--add-flags "-cp $out/lib/gol-tool.jar" \
Copy link
Member

@GetPsyched GetPsyched Jan 26, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Unfamiliar with the -cp flag in the java command. Does this do the same thing as -jar?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Almost the same according to https://stackoverflow.com/a/11922724
I used it because it was used in https://github.com/clarisma/gol-tool/blob/main/bin/gol

--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;
};
}
Loading