From 92672cfff81e2cc227b237037746ef296c551503 Mon Sep 17 00:00:00 2001 From: Nikolay Korotkiy Date: Fri, 27 Nov 2020 12:05:04 +0300 Subject: =?UTF-8?q?qmapshack:=201.15.0=20=E2=86=92=201.15.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pkgs/applications/gis/qmapshack/default.nix | 41 +++++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 pkgs/applications/gis/qmapshack/default.nix (limited to 'pkgs/applications/gis') diff --git a/pkgs/applications/gis/qmapshack/default.nix b/pkgs/applications/gis/qmapshack/default.nix new file mode 100644 index 000000000000..bc7d888e2c15 --- /dev/null +++ b/pkgs/applications/gis/qmapshack/default.nix @@ -0,0 +1,41 @@ +{ mkDerivation, lib, fetchFromGitHub, cmake +, qtscript, qtwebengine, gdal, proj, routino, quazip }: + +mkDerivation rec { + pname = "qmapshack"; + version = "1.15.1"; + + src = fetchFromGitHub { + owner = "Maproom"; + repo = pname; + rev = "V_${version}"; + sha256 = "1q8qczp9bgk3dzdswb1x64fcn3xg339s0yx31nablb518hcb8jkr"; + }; + + nativeBuildInputs = [ cmake ]; + + buildInputs = [ qtscript qtwebengine gdal proj routino quazip ]; + + cmakeFlags = [ + "-DROUTINO_XML_PATH=${routino}/share/routino" + "-DQUAZIP_INCLUDE_DIR=${quazip}/include/quazip5" + "-DLIBQUAZIP_LIBRARY=${quazip}/lib/libquazip.so" + ]; + + patches = [ + "${src}/FindPROJ4.patch" + "${src}/FindQuaZip5.patch" + ]; + + qtWrapperArgs = [ + "--suffix PATH : ${lib.makeBinPath [ gdal routino ]}" + ]; + + meta = with lib; { + homepage = "https://github.com/Maproom/qmapshack"; + description = "Consumer grade GIS software"; + license = licenses.gpl3Plus; + maintainers = with maintainers; [ dotlambda sikmir ]; + platforms = with platforms; linux; + }; +} -- cgit v1.2.3