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

24 lines
605 B
Nix
Raw Normal View History

2014-02-02 09:50:57 +01:00
{stdenv, fetchurl, qt4, boost, proj, gdal}:
stdenv.mkDerivation rec {
2014-02-02 09:50:57 +01:00
name = "merkaartor-0.18.1";
src = fetchurl {
2014-02-02 09:50:57 +01:00
url = "http://merkaartor.be/attachments/download/301/merkaartor-0.18.1.tar.bz2";
sha256 = "17qk45pmlxqigla1915dvn9pp91y85d2bkcaap4g3m8mk1crcsix";
};
configurePhase = ''
qmake -makefile PREFIX=$out
'';
2014-02-02 09:50:57 +01:00
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;
};
}