mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 23:36:17 +01:00
gpxsee: init at 2.16
This commit is contained in:
parent
453086a15f
commit
c415764a1e
2 changed files with 35 additions and 0 deletions
33
pkgs/applications/misc/gpxsee/default.nix
Normal file
33
pkgs/applications/misc/gpxsee/default.nix
Normal 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;
|
||||||
|
};
|
||||||
|
|
||||||
|
}
|
|
@ -12977,6 +12977,8 @@ in
|
||||||
|
|
||||||
gpsprune = callPackage ../applications/misc/gpsprune { };
|
gpsprune = callPackage ../applications/misc/gpsprune { };
|
||||||
|
|
||||||
|
gpxsee = qt5.callPackage ../applications/misc/gpxsee { };
|
||||||
|
|
||||||
gtk2fontsel = callPackage ../applications/misc/gtk2fontsel {
|
gtk2fontsel = callPackage ../applications/misc/gtk2fontsel {
|
||||||
inherit (gnome2) gtk;
|
inherit (gnome2) gtk;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue