nixpkgs-suyu/pkgs/applications/misc/pure-maps/default.nix

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

46 lines
1.3 KiB
Nix
Raw Normal View History

{ lib, mkDerivation, fetchFromGitHub
2022-01-16 18:07:32 +01:00
, cmake, qttools, kirigami2, qtquickcontrols2, qtlocation, qtsensors
2020-12-28 21:04:09 +01:00
, nemo-qml-plugin-dbus, mapbox-gl-qml, s2geometry
, python3, pyotherside
2020-12-28 21:04:09 +01:00
}:
mkDerivation rec {
pname = "pure-maps";
2022-08-30 02:08:12 +02:00
version = "3.1.1";
2020-12-28 21:04:09 +01:00
src = fetchFromGitHub {
owner = "rinigus";
repo = "pure-maps";
rev = version;
2022-08-30 02:08:12 +02:00
hash = "sha256-ZPW2hNnaRfv5aTXqku7hPShN0leOuVEJ3T/OOTzwgXQ=";
2020-12-28 21:04:09 +01:00
fetchSubmodules = true;
};
nativeBuildInputs = [
2022-01-16 18:07:32 +01:00
cmake python3 qttools python3.pkgs.wrapPython
];
2020-12-28 21:04:09 +01:00
buildInputs = [
kirigami2 qtquickcontrols2 qtlocation qtsensors
nemo-qml-plugin-dbus pyotherside mapbox-gl-qml s2geometry
];
2022-01-16 18:07:32 +01:00
cmakeFlags = [ "-DFLAVOR=kirigami" ];
2020-12-28 21:04:09 +01:00
pythonPath = with python3.pkgs; [ gpxpy ];
preInstall = ''
buildPythonPath "$pythonPath"
qtWrapperArgs+=(--prefix PYTHONPATH : "$program_PYTHONPATH")
2020-12-28 21:04:09 +01:00
'';
meta = with lib; {
description = "Display vector and raster maps, places, routes, and provide navigation instructions with a flexible selection of data and service providers";
homepage = "https://github.com/rinigus/pure-maps";
changelog = "https://github.com/rinigus/pure-maps/blob/${src.rev}/NEWS.md";
2020-12-28 21:04:09 +01:00
license = licenses.gpl3Only;
maintainers = [ maintainers.Thra11 ];
platforms = platforms.linux;
};
}