nixpkgs/pkgs/applications/misc/osmium-tool/default.nix

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

57 lines
1.1 KiB
Nix
Raw Normal View History

{ lib, stdenv
, fetchFromGitHub
, cmake
, installShellFiles
, pandoc
, boost
, bzip2
, expat
, libosmium
2021-01-08 20:54:25 +00:00
, lz4
, protozero
, zlib
}:
2018-10-28 17:09:25 +00:00
stdenv.mkDerivation rec {
pname = "osmium-tool";
2023-09-20 17:46:05 +00:00
version = "1.16.0";
2018-10-28 17:09:25 +00:00
src = fetchFromGitHub {
owner = "osmcode";
repo = "osmium-tool";
rev = "v${version}";
2023-09-20 17:46:05 +00:00
sha256 = "sha256-DObqbzdPA4RlrlcZhqA0MQtWBE+D6GRD1pd9U4DARIk=";
2018-10-28 17:09:25 +00:00
};
nativeBuildInputs = [
cmake
installShellFiles
pandoc
];
buildInputs = [
boost
bzip2
expat
libosmium
2021-01-08 20:54:25 +00:00
lz4
protozero
zlib
];
doCheck = true;
postInstall = ''
installShellCompletion --zsh ../zsh_completion/_osmium
'';
2018-10-28 17:09:25 +00:00
meta = with lib; {
2018-10-28 17:09:25 +00:00
description = "Multipurpose command line tool for working with OpenStreetMap data based on the Osmium library";
homepage = "https://osmcode.org/osmium-tool/";
2021-02-03 20:58:49 +00:00
changelog = "https://github.com/osmcode/osmium-tool/blob/v${version}/CHANGELOG.md";
2021-01-08 20:54:25 +00:00
license = with licenses; [ gpl3Plus mit bsd3 ];
maintainers = with maintainers; teams.geospatial.members ++ [ das-g ];
2024-02-11 02:19:15 +00:00
mainProgram = "osmium";
2018-10-28 17:09:25 +00:00
};
}