summary refs log tree commit diff
path: root/pkgs/applications/misc/osmctools/default.nix
blob: e70be8201b348b8ffc401456db666f5b3bd685c9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{ stdenv, fetchurl, zlib } :

let

  convert_src = fetchurl {
    url = http://m.m.i24.cc/osmconvert.c;
    sha256 = "1mvmb171c1jqxrm80jc7qicwk4kgg7yq694n7ci65g6i284r984x";
    # version = 0.8.5
  };

  filter_src = fetchurl {
    url = http://m.m.i24.cc/osmfilter.c;
    sha256 = "0vm3bls9jb2cb5b11dn82sxnc22qzkf4ghmnkivycigrwa74i6xl";
    # version = 1.4.0
  };

in

stdenv.mkDerivation rec {
  name = "osmctools-${version}";
  version = "0.8.5plus1.4.0";

  buildInputs = [ zlib ];

  phases = [ "buildPhase" "installPhase" ];

  buildPhase = ''
    cc ${convert_src} -lz -O3 -o osmconvert
    cc ${filter_src} -O3 -o osmfilter
  '';

  installPhase = ''
    mkdir -p $out/bin
    mv osmconvert $out/bin
    mv osmfilter $out/bin
  '';

  meta = with stdenv.lib; {
    description = "Command line tools for transforming Open Street Map files";
    homepage = [
      https://wiki.openstreetmap.org/wiki/Osmconvert
      https://wiki.openstreetmap.org/wiki/Osmfilter
    ];
    platforms = platforms.unix;
  };
}