about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/gis/zombietrackergps
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/applications/gis/zombietrackergps')
-rw-r--r--nixpkgs/pkgs/applications/gis/zombietrackergps/default.nix67
1 files changed, 67 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/applications/gis/zombietrackergps/default.nix b/nixpkgs/pkgs/applications/gis/zombietrackergps/default.nix
new file mode 100644
index 000000000000..47a4329ae19d
--- /dev/null
+++ b/nixpkgs/pkgs/applications/gis/zombietrackergps/default.nix
@@ -0,0 +1,67 @@
+{ mkDerivation
+, lib
+, fetchFromGitLab
+, qmake
+, qtcharts
+, qtsvg
+, marble
+, qtwebengine
+, ldutils
+}:
+
+mkDerivation rec {
+  pname = "zombietrackergps";
+  version = "1.10";
+
+  src = fetchFromGitLab {
+    owner = "ldutils-projects";
+    repo = pname;
+    rev = "v_${version}";
+    sha256 = "sha256-qRhCAOVWyDLD3WDptPRQVq+VwyFu83XQNaL5TMsGs4Y=";
+  };
+
+  buildInputs = [
+    ldutils
+    qtcharts
+    qtsvg
+    marble.dev
+    qtwebengine
+  ];
+
+  nativeBuildInputs = [
+    qmake
+  ];
+
+  prePatch = ''
+    substituteInPlace ztgps.pro --replace "../libldutils" "libldutils"
+    substituteInPlace tests.pro --replace "../libldutils" "libldutils"
+
+    ln -s ${ldutils} libldutils
+  '';
+
+  preConfigure = ''
+    export LANG=en_US.UTF-8
+    export INSTALL_ROOT=$out
+  '';
+
+  preInstall = ''
+    substituteInPlace Makefile.ztgps --replace '$(INSTALL_ROOT)' ""
+    substituteInPlace Makefile.art --replace '$(INSTALL_ROOT)' ""
+  '';
+
+  postInstall = ''
+    install -Dm644 build/rcc/*.rcc -t $out/share/zombietrackergps
+  '';
+
+  qmakeFlags = [ "ZombieTrackerGPS.pro" ];
+
+  meta = with lib; {
+    description = "GPS track manager for Qt using KDE Marble maps";
+    homepage = "https://www.zombietrackergps.net/ztgps/";
+    changelog = "https://www.zombietrackergps.net/ztgps/history.html";
+    license = licenses.gpl3Plus;
+    maintainers = with maintainers; [ sohalt ];
+    platforms = platforms.linux;
+    broken = true;  # doesn't build with latest Marble
+  };
+}