mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 15:27:20 +03:00
gpxsee: init at 2.16
This commit is contained in:
parent
453086a15f
commit
c415764a1e
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 { };
|
||||
|
||||
gpxsee = qt5.callPackage ../applications/misc/gpxsee { };
|
||||
|
||||
gtk2fontsel = callPackage ../applications/misc/gtk2fontsel {
|
||||
inherit (gnome2) gtk;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user