2021-01-10 23:54:33 -08:00
|
|
|
{ lib, stdenv, fetchFromGitHub, libroxml, proj, libyamlcpp, boost } :
|
2018-02-03 10:37:08 -08:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "osm2xmap";
|
2018-02-03 10:37:08 -08:00
|
|
|
version = "2.0";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
sha256 = "1d3f18wzk240yp0q8i2vskhcfj5ar61s4hw83vgps0wr2aglph3w";
|
|
|
|
repo = "osm2xmap";
|
|
|
|
owner = "sembruk";
|
|
|
|
rev = "v${version}";
|
|
|
|
};
|
|
|
|
|
|
|
|
makeFlags = [
|
2019-12-29 12:57:04 -08:00
|
|
|
"GIT_VERSION=${version}"
|
2018-02-03 10:37:08 -08:00
|
|
|
"GIT_TIMESTAMP="
|
2021-01-24 01:19:10 -08:00
|
|
|
"SHAREDIR=${placeholder "out"}/share/osm2xmap"
|
|
|
|
"INSTALL_BINDIR=${placeholder "out"}/bin"
|
|
|
|
"INSTALL_MANDIR=${placeholder "out"}/share/man/man1"
|
2018-02-03 10:37:08 -08:00
|
|
|
];
|
|
|
|
|
2019-10-30 04:34:47 -07:00
|
|
|
NIX_CFLAGS_COMPILE = "-DACCEPT_USE_OF_DEPRECATED_PROJ_API_H";
|
2019-07-11 03:52:04 -07:00
|
|
|
|
2018-02-03 10:37:08 -08:00
|
|
|
buildInputs = [ libroxml proj libyamlcpp boost ];
|
|
|
|
|
2021-01-10 23:54:33 -08:00
|
|
|
meta = with lib; {
|
2018-02-03 10:37:08 -08:00
|
|
|
homepage = "https://github.com/sembruk/osm2xmap";
|
2020-10-10 22:55:05 -07:00
|
|
|
description = "Converter from OpenStreetMap data format to OpenOrienteering Mapper format";
|
2018-02-03 10:37:08 -08:00
|
|
|
license = licenses.gpl3;
|
|
|
|
maintainers = [ maintainers.mpickering ];
|
2021-01-14 21:42:41 -08:00
|
|
|
platforms = with lib.platforms; linux;
|
2018-02-03 10:37:08 -08:00
|
|
|
};
|
|
|
|
}
|