aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/applications/misc/qmapshack/default.nix
blob: a12736b5a60ed27367963c2b14a423f2441b4a4e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{ mkDerivation, lib, fetchFromGitHub, cmake
, qtscript, qtwebengine, gdal, proj, routino, quazip }:

mkDerivation rec {
  pname = "qmapshack";
  version = "1.13.2";

  src = fetchFromGitHub {
    owner = "Maproom";
    repo = pname;
    # TODO: remove it on next release.
    # 1.13.2 release tarball is essentially broken, use fixed commit instead.
    # See https://github.com/maproom/qmapshack/pull/4 for more details.
    rev = "763cfc149566325cce9e4690cb7b5f986048f86a"; #"V_${version}";
    sha256 = "1lfivhm9rv9ly1srlmb7d80s77306xplg23lx35vav879bri29rx";
  };

  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"
  ];

  enableParallelBuilding = true;

  patches = [
    "${src}/FindPROJ4.patch"
    "${src}/FindQuaZip5.patch"
  ];

  meta = with lib; {
    homepage = https://github.com/Maproom/qmapshack;
    description = "Consumer grade GIS software";
    license = licenses.gpl3;
    maintainers = with maintainers; [ dotlambda sikmir ];
    platforms = with platforms; linux;
  };
}