1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/applications/misc/gpxsee/default.nix

38 lines
899 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, qmakeHook, qtbase, qttools, makeQtWrapper }:
2016-06-25 06:03:03 +01:00
stdenv.mkDerivation rec {
name = "gpxsee-${version}";
2017-05-30 15:25:50 +01:00
version = "4.8";
2016-06-25 06:03:03 +01:00
src = fetchFromGitHub {
owner = "tumic0";
repo = "GPXSee";
rev = version;
2017-05-30 15:25:50 +01:00
sha256 = "17s1v6b1j7pi0yj554bd0cg14bl854gssp5gj2pl51rxji6zr0wp";
2016-06-25 06:03:03 +01:00
};
nativeBuildInputs = [ qmakeHook qttools makeQtWrapper ];
2017-04-16 08:13:32 +01:00
preConfigure = ''
substituteInPlace src/config.h --replace /usr/share/gpxsee $out/share/gpxsee
2017-04-16 08:13:32 +01:00
lrelease lang/*.ts
2016-06-25 06:03:03 +01:00
'';
preFixup = ''
install -Dm755 GPXSee $out/bin/GPXSee
wrapQtProgram $out/bin/GPXSee
mkdir -p $out/share/gpxsee
cp pkg/maps.txt $out/share/gpxsee
2016-06-25 06:03:03 +01:00
'';
2017-04-16 08:13:32 +01:00
2016-06-25 06:03:03 +01:00
meta = with stdenv.lib; {
homepage = http://tumic.wz.cz/gpxsee;
description = "GPX viewer and analyzer";
license = licenses.gpl3;
maintainers = [ maintainers.womfoo ];
platforms = platforms.linux;
};
}