zombietrackergps: init at 1.01
This commit is contained in:
parent
adf6c2c2d5
commit
e96fd6e6b7
57
pkgs/applications/gis/zombietrackergps/default.nix
Normal file
57
pkgs/applications/gis/zombietrackergps/default.nix
Normal file
@ -0,0 +1,57 @@
|
|||||||
|
{ mkDerivation
|
||||||
|
, lib
|
||||||
|
, fetchFromGitLab
|
||||||
|
, qmake
|
||||||
|
, qtbase
|
||||||
|
, qtcharts
|
||||||
|
, qtsvg
|
||||||
|
, marble
|
||||||
|
, qtwebengine
|
||||||
|
, ldutils
|
||||||
|
}:
|
||||||
|
|
||||||
|
mkDerivation rec {
|
||||||
|
pname = "zombietrackergps";
|
||||||
|
version = "1.01";
|
||||||
|
|
||||||
|
src = fetchFromGitLab {
|
||||||
|
owner = "ldutils-projects";
|
||||||
|
repo = pname;
|
||||||
|
rev = "v_${version}";
|
||||||
|
sha256 = "0h354ydbahy8rpkmzh5ym5bddbl6irjzklpcg6nbkv6apry84d48";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [
|
||||||
|
ldutils
|
||||||
|
qtbase
|
||||||
|
qtcharts
|
||||||
|
qtsvg
|
||||||
|
marble.dev
|
||||||
|
qtwebengine
|
||||||
|
];
|
||||||
|
|
||||||
|
nativeBuildInputs = [
|
||||||
|
qmake
|
||||||
|
];
|
||||||
|
|
||||||
|
prePatch = ''
|
||||||
|
sed -ie "s,INCLUDEPATH += /usr/include/libldutils,INCLUDEPATH += ${ldutils}," ZombieTrackerGPS.pro
|
||||||
|
'';
|
||||||
|
|
||||||
|
preConfigure = ''
|
||||||
|
export LANG=en_US.UTF-8
|
||||||
|
export INSTALL_ROOT=$out
|
||||||
|
'';
|
||||||
|
|
||||||
|
postConfigure = ''
|
||||||
|
substituteInPlace Makefile --replace '$(INSTALL_ROOT)' ""
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "GPS track manager for Qt using KDE Marble maps";
|
||||||
|
homepage = "https://gitlab.com/ldutils-projects/zombietrackergps";
|
||||||
|
license = licenses.gpl3Plus;
|
||||||
|
maintainers = with maintainers; [ sohalt ];
|
||||||
|
platforms = platforms.linux;
|
||||||
|
};
|
||||||
|
}
|
@ -24647,6 +24647,8 @@ in
|
|||||||
inherit (darwin.apple_sdk.frameworks) CoreServices;
|
inherit (darwin.apple_sdk.frameworks) CoreServices;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
zombietrackergps = libsForQt514.callPackage ../applications/gis/zombietrackergps { };
|
||||||
|
|
||||||
zoom-us = libsForQt514.callPackage ../applications/networking/instant-messengers/zoom-us { };
|
zoom-us = libsForQt514.callPackage ../applications/networking/instant-messengers/zoom-us { };
|
||||||
|
|
||||||
zotero = callPackage ../applications/office/zotero { };
|
zotero = callPackage ../applications/office/zotero { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user