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

64 lines
1.5 KiB
Nix
Raw Normal View History

2021-02-25 19:12:25 +00:00
{ mkDerivation
, lib
, stdenv
, fetchFromGitHub
, qmake
, qttools
, qttranslations
, gdal
, proj
, qtsvg
2021-06-06 22:33:24 +01:00
, qtwebengine
2021-02-25 19:12:25 +00:00
, withGeoimage ? true, exiv2
, withGpsdlib ? (!stdenv.isDarwin), gpsd
, withLibproxy ? false, libproxy
, withZbar ? false, zbar
}:
mkDerivation rec {
pname = "merkaartor";
2021-06-06 22:33:24 +01:00
version = "0.19.0";
2016-06-26 08:03:58 +01:00
src = fetchFromGitHub {
owner = "openstreetmap";
repo = "merkaartor";
rev = version;
2021-08-31 20:12:16 +01:00
sha256 = "sha256-I3QNCXzwhEFa8aOdwl3UJV8MLZ9caN9wuaaVrGFRvbQ=";
};
2021-02-25 19:12:25 +00:00
nativeBuildInputs = [ qmake qttools ];
2021-06-06 22:33:24 +01:00
buildInputs = [ gdal proj qtsvg qtwebengine ]
2021-02-25 19:12:25 +00:00
++ lib.optional withGeoimage exiv2
++ lib.optional withGpsdlib gpsd
++ lib.optional withLibproxy libproxy
++ lib.optional withZbar zbar;
2021-02-25 19:12:25 +00:00
preConfigure = ''
lrelease src/src.pro
'';
2016-04-17 00:33:35 +01:00
2021-06-06 22:33:24 +01:00
qmakeFlags = [
"TRANSDIR_SYSTEM=${qttranslations}/translations"
"USEWEBENGINE=1"
] ++ lib.optional withGeoimage "GEOIMAGE=1"
2021-02-25 19:12:25 +00:00
++ lib.optional withGpsdlib "GPSDLIB=1"
++ lib.optional withLibproxy "LIBPROXY=1"
++ lib.optional withZbar "ZBAR=1";
2021-02-25 19:12:25 +00:00
postInstall = lib.optionalString stdenv.isDarwin ''
mkdir -p $out/Applications
mv binaries/bin/merkaartor.app $out/Applications
mv binaries/bin/plugins $out/Applications/merkaartor.app/Contents
wrapQtApp $out/Applications/merkaartor.app/Contents/MacOS/merkaartor
'';
2019-07-11 12:58:46 +01:00
meta = with lib; {
description = "OpenStreetMap editor";
homepage = "http://merkaartor.be/";
license = licenses.gpl2Plus;
2021-02-25 19:12:25 +00:00
maintainers = with maintainers; [ sikmir ];
platforms = platforms.unix;
};
}