nixpkgs/pkgs/applications/misc/osmctools/default.nix

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

29 lines
768 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitLab, autoreconfHook, zlib }:
2016-09-03 16:04:52 +02:00
2019-12-27 12:31:15 +01:00
stdenv.mkDerivation rec {
pname = "osmctools";
version = "0.9";
2016-10-13 14:33:48 +02:00
2019-12-27 12:31:15 +01:00
src = fetchFromGitLab {
owner = "osm-c-tools";
repo = pname;
rev = version;
sha256 = "1m8d3r1q1v05pkr8k9czrmb4xjszw6hvgsf3kn9pf0v14gpn4r8f";
2016-09-03 16:04:52 +02:00
};
2019-12-27 12:31:15 +01:00
nativeBuildInputs = [ autoreconfHook ];
2016-09-03 16:04:52 +02:00
buildInputs = [ zlib ];
meta = with lib; {
2016-10-13 14:33:48 +02:00
description = "Command line tools for transforming Open Street Map files";
homepage = [
"https://wiki.openstreetmap.org/wiki/osmconvert"
"https://wiki.openstreetmap.org/wiki/osmfilter"
"https://wiki.openstreetmap.org/wiki/osmupdate"
];
2019-12-27 12:31:15 +01:00
maintainers = with maintainers; [ sikmir ];
2016-09-03 16:04:52 +02:00
platforms = platforms.unix;
2024-03-19 13:26:06 +01:00
license = licenses.agpl3Only;
2016-09-03 16:04:52 +02:00
};
}