gpxsee: init at 2.16

This commit is contained in:
Kranium Gikos Mendoza 2016-06-25 13:03:03 +08:00
parent 453086a15f
commit c415764a1e
2 changed files with 35 additions and 0 deletions

View file

@ -0,0 +1,33 @@
{ stdenv, fetchFromGitHub, qmakeHook }:
stdenv.mkDerivation rec {
name = "gpxsee-${version}";
version = "2.16";
src = fetchFromGitHub {
owner = "tumic0";
repo = "GPXSee";
rev = version;
sha256 = "0xqmjh071my9klxlk5afx8r673zlknq84n7ain6mz9i8n9m1gviv";
};
nativeBuildInputs = [ qmakeHook ];
patchPhase = ''
sed -i '/lang\/gpxsee_cs.qm/d' gpxsee.qrc
'';
preFixup = ''
mkdir -p $out/bin
cp GPXSee $out/bin
'';
meta = with stdenv.lib; {
homepage = http://tumic.wz.cz/gpxsee;
description = "GPX viewer and analyzer";
license = licenses.gpl3;
maintainers = [ maintainers.womfoo ];
platforms = platforms.linux;
};
}

View file

@ -12977,6 +12977,8 @@ in
gpsprune = callPackage ../applications/misc/gpsprune { };
gpxsee = qt5.callPackage ../applications/misc/gpxsee { };
gtk2fontsel = callPackage ../applications/misc/gtk2fontsel {
inherit (gnome2) gtk;
};