tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
gpxsee: 4.14 -> 4.19
dywedir
8 years ago
bba83033
7b5d9a29
+7
-4
1 changed file
expand all
collapse all
unified
split
pkgs
applications
misc
gpxsee
default.nix
+7
-4
pkgs/applications/misc/gpxsee/default.nix
···
2
3
stdenv.mkDerivation rec {
4
name = "gpxsee-${version}";
5
-
version = "4.14";
6
7
src = fetchFromGitHub {
8
owner = "tumic0";
9
repo = "GPXSee";
10
rev = version;
11
-
sha256 = "0yv3hcs5b8a88mp24h8r2sn69phwrahdff5pp74lz24270il3jgb";
12
};
13
14
nativeBuildInputs = [ qmake qttools ];
···
26
'';
27
28
meta = with stdenv.lib; {
29
-
homepage = http://tumic.wz.cz/gpxsee;
30
description = "GPX viewer and analyzer";
0
0
0
0
31
license = licenses.gpl3;
32
maintainers = [ maintainers.womfoo ];
33
platforms = platforms.linux;
34
};
35
-
36
}
···
2
3
stdenv.mkDerivation rec {
4
name = "gpxsee-${version}";
5
+
version = "4.19";
6
7
src = fetchFromGitHub {
8
owner = "tumic0";
9
repo = "GPXSee";
10
rev = version;
11
+
sha256 = "1xjf2aawf633c1ydhpcsjhdlfkjkfsjbcgjd737xpfv1wjz99l4l";
12
};
13
14
nativeBuildInputs = [ qmake qttools ];
···
26
'';
27
28
meta = with stdenv.lib; {
29
+
homepage = http://www.gpxsee.org/;
30
description = "GPX viewer and analyzer";
31
+
longDescription = ''
32
+
GPXSee is a Qt-based GPS log file viewer and analyzer that supports GPX,
33
+
TCX, KML, FIT, IGC and NMEA files.
34
+
'';
35
license = licenses.gpl3;
36
maintainers = [ maintainers.womfoo ];
37
platforms = platforms.linux;
38
};
0
39
}