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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

36 lines
978 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, cmake, wrapQtAppsHook
, qtscript, qtwebengine, gdal, proj, routino, quazip }:
2017-09-24 18:18:39 +00:00
2023-07-21 19:24:17 +00:00
stdenv.mkDerivation rec {
pname = "qmapshack";
version = "1.17.1";
2019-09-12 19:14:42 +00:00
src = fetchFromGitHub {
owner = "Maproom";
2023-07-21 19:24:17 +00:00
repo = "qmapshack";
2019-11-01 16:28:05 +00:00
rev = "V_${version}";
hash = "sha256-wqztKmaUxY3qd7IgPM7kV7x0BsrTMTX3DbcdM+lsarI=";
2017-09-24 18:18:39 +00:00
};
2023-07-21 19:24:17 +00:00
nativeBuildInputs = [ cmake wrapQtAppsHook ];
2017-09-24 18:18:39 +00:00
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; {
2019-09-12 19:14:42 +00:00
description = "Consumer grade GIS software";
2023-07-21 19:24:17 +00:00
homepage = "https://github.com/Maproom/qmapshack";
changelog = "https://github.com/Maproom/qmapshack/blob/V_${version}/changelog.txt";
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;
};
}