summary refs log tree commit diff
path: root/pkgs/applications/misc/osm2xmap
diff options
context:
space:
mode:
authorMatthew Pickering <matthewtpickering@gmail.com>2018-02-03 18:37:08 +0000
committerMatthew Pickering <matthewtpickering@gmail.com>2018-02-03 18:37:08 +0000
commit9c7c640ae4442fab7f1f67470ccfb92bf6d20529 (patch)
tree9bf757148fd2f082d36ca5af1cf28e5277d2d0fa /pkgs/applications/misc/osm2xmap
parent8b362957c7683571e7bdc8f0672cc5b53f704c75 (diff)
downloadnixpkgs-9c7c640ae4442fab7f1f67470ccfb92bf6d20529.tar
nixpkgs-9c7c640ae4442fab7f1f67470ccfb92bf6d20529.tar.gz
nixpkgs-9c7c640ae4442fab7f1f67470ccfb92bf6d20529.tar.bz2
nixpkgs-9c7c640ae4442fab7f1f67470ccfb92bf6d20529.tar.lz
nixpkgs-9c7c640ae4442fab7f1f67470ccfb92bf6d20529.tar.xz
nixpkgs-9c7c640ae4442fab7f1f67470ccfb92bf6d20529.tar.zst
nixpkgs-9c7c640ae4442fab7f1f67470ccfb92bf6d20529.zip
osm2xmap: init at 2.0
Diffstat (limited to 'pkgs/applications/misc/osm2xmap')
-rw-r--r--pkgs/applications/misc/osm2xmap/default.nix38
1 files changed, 38 insertions, 0 deletions
diff --git a/pkgs/applications/misc/osm2xmap/default.nix b/pkgs/applications/misc/osm2xmap/default.nix
new file mode 100644
index 00000000000..60401c412fc
--- /dev/null
+++ b/pkgs/applications/misc/osm2xmap/default.nix
@@ -0,0 +1,38 @@
+{ 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;
+  };
+
+
+}
+
+