about summary refs log tree commit diff
path: root/pkgs/applications/misc
diff options
context:
space:
mode:
authorKevin Cox <kevincox@kevincox.ca>2020-11-04 07:31:13 -0500
committerGitHub <noreply@github.com>2020-11-04 07:31:13 -0500
commit2802d2a8251a64d8d49e90300499974bb8141912 (patch)
treef15c1625e2bb1d13ab630faf47a1c501326306ca /pkgs/applications/misc
parentf2e91928202f69af6b7b551e2e118ec4193c0e00 (diff)
parentdda8bdcf6d83e121ab4766e2e07b41861d6a7558 (diff)
Merge pull request #101902 from sikmir/gpxsee
gpxsee: 7.33 → 7.35
Diffstat (limited to 'pkgs/applications/misc')
-rw-r--r--pkgs/applications/misc/gpxsee/default.nix9
1 files changed, 4 insertions, 5 deletions
diff --git a/pkgs/applications/misc/gpxsee/default.nix b/pkgs/applications/misc/gpxsee/default.nix
index 5b34007ec4080..1bfe642752be2 100644
--- a/pkgs/applications/misc/gpxsee/default.nix
+++ b/pkgs/applications/misc/gpxsee/default.nix
@@ -2,13 +2,13 @@
 
 mkDerivation rec {
   pname = "gpxsee";
-  version = "7.33";
+  version = "7.35";
 
   src = fetchFromGitHub {
     owner = "tumic0";
     repo = "GPXSee";
     rev = version;
-    sha256 = "1k4zl7knlpwxrpqk1axkmy8x12915z15h3q2sjnx3jcnx6qw73ja";
+    sha256 = "1schmymcsd8s0r26qwyx56z107ql8pgrk1pnqy19mc7fyirdwmp5";
   };
 
   patches = (substituteAll {
@@ -29,15 +29,14 @@ mkDerivation rec {
     wrapQtApp $out/Applications/GPXSee.app/Contents/MacOS/GPXSee
   '';
 
-  enableParallelBuilding = true;
-
   meta = with stdenv.lib; {
-    homepage = "https://www.gpxsee.org/";
     description = "GPS log file viewer and analyzer";
     longDescription = ''
       GPXSee is a Qt-based GPS log file viewer and analyzer that supports
       all common GPS log file formats.
     '';
+    homepage = "https://www.gpxsee.org/";
+    changelog = "https://build.opensuse.org/package/view_file/home:tumic:GPXSee/gpxsee/gpxsee.changes";
     license = licenses.gpl3;
     maintainers = with maintainers; [ womfoo sikmir ];
     platforms = with platforms; linux ++ darwin;