osmium-tool: 1.12.1 → 1.13.0

This commit is contained in:
Nikolay Korotkiy 2021-01-08 23:54:25 +03:00
parent 7266f5d422
commit 00a23bd1b3
No known key found for this signature in database
GPG key ID: D1DE6D7F693663A5

View file

@ -7,19 +7,20 @@
, bzip2
, expat
, libosmium
, lz4
, protozero
, zlib
}:
stdenv.mkDerivation rec {
pname = "osmium-tool";
version = "1.12.1";
version = "1.13.0";
src = fetchFromGitHub {
owner = "osmcode";
repo = "osmium-tool";
rev = "v${version}";
sha256 = "13142hj8gfgj6w51a62hjzfmzic90xgrnnlnb70hpdqjy86bxv7j";
sha256 = "0rn67g4xf01i7pkxrdh87jdj2rzkw5pfkx5wkg9245z5yxjxhqj2";
};
nativeBuildInputs = [
@ -33,6 +34,7 @@ stdenv.mkDerivation rec {
bzip2
expat
libosmium
lz4
protozero
zlib
];
@ -46,7 +48,7 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; {
description = "Multipurpose command line tool for working with OpenStreetMap data based on the Osmium library";
homepage = "https://osmcode.org/osmium-tool/";
license = with licenses; [ gpl3 mit bsd3 ];
license = with licenses; [ gpl3Plus mit bsd3 ];
maintainers = with maintainers; [ das-g ];
};
}