cc1fd41964
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/osmium-tool/versions
24 lines
730 B
Nix
24 lines
730 B
Nix
{ stdenv, fetchFromGitHub, cmake, libosmium, protozero, boost, bzip2, zlib, expat }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "osmium-tool";
|
|
version = "1.11.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "osmcode";
|
|
repo = "osmium-tool";
|
|
rev = "v${version}";
|
|
sha256 = "164r1w539dzy67ir2rqh21kwdvkjv87isd18gp51qyxbsprz6kq5";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
buildInputs = [ libosmium protozero boost bzip2 zlib expat ];
|
|
|
|
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 ];
|
|
maintainers = with maintainers; [ das-g ];
|
|
};
|
|
}
|