nixpkgs/pkgs/applications/misc/osm2xmap/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

35 lines
994 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, libroxml, proj_7, yaml-cpp_0_3, boost } :
2018-02-03 18:37:08 +00:00
stdenv.mkDerivation rec {
pname = "osm2xmap";
2018-02-03 18:37:08 +00:00
version = "2.0";
src = fetchFromGitHub {
sha256 = "1d3f18wzk240yp0q8i2vskhcfj5ar61s4hw83vgps0wr2aglph3w";
repo = "osm2xmap";
owner = "sembruk";
rev = "v${version}";
};
makeFlags = [
"GIT_VERSION=${version}"
2018-02-03 18:37:08 +00:00
"GIT_TIMESTAMP="
2021-09-19 00:10:32 +00:00
"SHAREDIR=${placeholder "out"}/share/osm2xmap/"
"INSTALL_BINDIR=${placeholder "out"}/bin"
"INSTALL_MANDIR=${placeholder "out"}/share/man/man1"
2018-02-03 18:37:08 +00:00
];
env.NIX_CFLAGS_COMPILE = "-DACCEPT_USE_OF_DEPRECATED_PROJ_API_H";
2019-07-11 10:52:04 +00:00
buildInputs = [ libroxml proj_7 yaml-cpp_0_3 boost ];
2018-02-03 18:37:08 +00:00
meta = with lib; {
2018-02-03 18:37:08 +00:00
homepage = "https://github.com/sembruk/osm2xmap";
description = "Converter from OpenStreetMap data format to OpenOrienteering Mapper format";
2018-02-03 18:37:08 +00:00
license = licenses.gpl3;
maintainers = [ maintainers.mpickering ];
2021-01-15 05:42:41 +00:00
platforms = with lib.platforms; linux;
2024-02-11 02:19:15 +00:00
mainProgram = "osm2xmap";
2018-02-03 18:37:08 +00:00
};
}