nixpkgs/pkgs/applications/gis/qmapshack/default.nix

43 lines
1.0 KiB
Nix
Raw Normal View History

2021-11-11 10:31:11 +00:00
{ mkDerivation, lib, fetchFromGitHub, cmake, substituteAll
, qtscript, qttranslations, qtwebengine, gdal, proj, routino, quazip }:
2017-09-24 18:18:39 +00:00
2019-08-02 17:19:02 +00:00
mkDerivation rec {
pname = "qmapshack";
version = "1.16.1";
2019-09-12 19:14:42 +00:00
src = fetchFromGitHub {
owner = "Maproom";
repo = pname;
2019-11-01 16:28:05 +00:00
rev = "V_${version}";
sha256 = "sha256-2otvRKtFb51PLrIh/Hxltp69n5nyR63HGGvk73TFjqA=";
2017-09-24 18:18:39 +00:00
};
2021-11-11 10:31:11 +00:00
patches = [
# See https://github.com/NixOS/nixpkgs/issues/86054
(substituteAll {
src = ./fix-qttranslations-path.patch;
inherit qttranslations;
})
];
2017-09-24 18:18:39 +00:00
nativeBuildInputs = [ cmake ];
2018-09-05 06:39:29 +00:00
buildInputs = [ qtscript qtwebengine gdal proj routino quazip ];
2017-09-24 18:18:39 +00:00
cmakeFlags = [
"-DROUTINO_XML_PATH=${routino}/share/routino"
];
qtWrapperArgs = [
"--suffix PATH : ${lib.makeBinPath [ gdal routino ]}"
];
2019-08-02 17:19:02 +00:00
meta = with lib; {
2020-03-29 07:35:11 +00:00
homepage = "https://github.com/Maproom/qmapshack";
2019-09-12 19:14:42 +00:00
description = "Consumer grade GIS software";
2020-11-27 09:05:04 +00:00
license = licenses.gpl3Plus;
2019-09-12 19:14:42 +00:00
maintainers = with maintainers; [ dotlambda sikmir ];
2017-09-24 18:18:39 +00:00
platforms = with platforms; linux;
};
}