summary refs log tree commit diff
path: root/pkgs/applications/misc/merkaartor/default.nix
blob: e6636415b5ef39bae0fa7037222534ed1def10da (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
{stdenv, fetchurl, qt4, boost, proj, gdal}:

stdenv.mkDerivation rec {
  name = "merkaartor-0.18.1";
  src = fetchurl {
    url = "http://merkaartor.be/attachments/download/301/merkaartor-0.18.1.tar.bz2";
    sha256 = "17qk45pmlxqigla1915dvn9pp91y85d2bkcaap4g3m8mk1crcsix";
  };

  configurePhase = ''
    qmake -makefile PREFIX=$out
  '';

  buildInputs = [ qt4 boost proj gdal ];

  meta = {
    description = "An openstreetmap editor";
    homepage = http://merkaartor.org/;
    license = "GPLv2+";
    maintainers = with stdenv.lib.maintainers; [viric urkud];
    inherit (qt4.meta) platforms;
  };
}