mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 05:31:22 +00:00
24 lines
739 B
Nix
24 lines
739 B
Nix
{ stdenv, fetchFromGitHub, cmake, libosmium, protozero, boost, bzip2, zlib, expat }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "osmium-tool-${version}";
|
|
version = "1.9.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "osmcode";
|
|
repo = "osmium-tool";
|
|
rev = "v${version}";
|
|
sha256 = "1cwabjbrdpqbi2gl7448sgniiwwa73avi9l6pnvh4r0jia2wi5wk";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|