Adding merkaartor (a qt-based openstreetmap editor)

svn path=/nixpkgs/trunk/; revision=22244
This commit is contained in:
Lluís Batlle i Rossell 2010-06-13 19:32:04 +00:00
parent b1946eec91
commit 68c33b2fe1
2 changed files with 28 additions and 0 deletions

View File

@ -0,0 +1,23 @@
{stdenv, fetchurl, qt, boost}:
stdenv.mkDerivation {
name = "merkaartor-0.16.0";
src = fetchurl {
url = http://www.merkaartor.org/downloads/source/merkaartor-0.16.0.tar.bz2;
sha256 = "0l33vgwwkqj65i86qq5j33bbf6q02hs8r1frjnd7icqdaqqv08d7";
};
configurePhase = ''
qmake -makefile PREFIX=$out
'';
buildInputs = [ qt boost ];
meta = {
description = "An openstreetmap editor";
homepage = http://merkaartor.org/;
license = "GPLv2+";
maintainers = with stdenv.lib.maintainers; [viric];
platforms = with stdenv.lib.platforms; all;
};
}

View File

@ -8204,6 +8204,11 @@ let
else pythonBase;
};
merkaartor = import ../applications/misc/merkaartor {
inherit fetchurl stdenv boost;
qt = qt4;
};
meshlab = import ../applications/graphics/meshlab {
inherit fetchurl stdenv bzip2 lib3ds levmar muparser unzip;
qt = qt4;