mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
35 lines
933 B
Nix
35 lines
933 B
Nix
{ stdenv, fetchFromGitHub, libroxml, proj, libyamlcpp, boost } :
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "osm2xmap-${version}";
|
|
version = "2.0";
|
|
|
|
src = fetchFromGitHub {
|
|
sha256 = "1d3f18wzk240yp0q8i2vskhcfj5ar61s4hw83vgps0wr2aglph3w";
|
|
repo = "osm2xmap";
|
|
owner = "sembruk";
|
|
rev = "v${version}";
|
|
};
|
|
|
|
makeFlags = [
|
|
"GIT_VERSION=$(version)"
|
|
"GIT_TIMESTAMP="
|
|
"SHAREDIR=$(out)/share/"
|
|
"INSTALL_BINDIR=$(out)/bin"
|
|
"INSTALL_MANDIR=$(out)/share/man/man1"
|
|
"INSTALL_SHAREDIR=$(out)/share/"
|
|
];
|
|
|
|
installFlags = [ "DESTDIR=$(out)" ];
|
|
|
|
buildInputs = [ libroxml proj libyamlcpp boost ];
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = "https://github.com/sembruk/osm2xmap";
|
|
description = "Converter from OpenStreetMap data format to OpenOrienteering Mapper format.";
|
|
license = licenses.gpl3;
|
|
maintainers = [ maintainers.mpickering ];
|
|
platforms = with stdenv.lib.platforms; linux;
|
|
};
|
|
}
|