2020-06-01 10:45:46 +02:00
|
|
|
{ stdenv, mkDerivation, fetchFromGitHub, qmake, qttools, qttranslations }:
|
2016-06-25 07:03:03 +02:00
|
|
|
|
2019-07-29 21:39:25 +02:00
|
|
|
mkDerivation rec {
|
2019-05-30 13:00:25 +02:00
|
|
|
pname = "gpxsee";
|
2020-07-01 10:35:34 +02:00
|
|
|
version = "7.31";
|
2016-06-25 07:03:03 +02:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "tumic0";
|
|
|
|
repo = "GPXSee";
|
|
|
|
rev = version;
|
2020-07-01 10:35:34 +02:00
|
|
|
sha256 = "0y60h66p8ydkinxk9x4sp4cm6gq66nc9jcavy135vmycsiq9gphn";
|
2016-06-25 07:03:03 +02:00
|
|
|
};
|
|
|
|
|
2020-06-01 10:45:46 +02:00
|
|
|
patches = [
|
|
|
|
# See https://github.com/NixOS/nixpkgs/issues/86054
|
|
|
|
./fix-qttranslations-path.diff
|
|
|
|
];
|
|
|
|
|
2020-03-01 21:23:02 +01:00
|
|
|
nativeBuildInputs = [ qmake qttools ];
|
2017-04-16 09:13:32 +02:00
|
|
|
|
2020-06-01 10:45:46 +02:00
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace src/GUI/app.cpp \
|
|
|
|
--subst-var-by qttranslations ${qttranslations}
|
|
|
|
'';
|
|
|
|
|
2017-04-16 09:13:32 +02:00
|
|
|
preConfigure = ''
|
2020-04-26 13:53:44 +02:00
|
|
|
lrelease gpxsee.pro
|
2016-06-25 07:03:03 +02:00
|
|
|
'';
|
|
|
|
|
2020-03-01 21:23:02 +01:00
|
|
|
postInstall = with stdenv; lib.optionalString isDarwin ''
|
2020-01-29 11:07:56 +01:00
|
|
|
mkdir -p $out/Applications
|
|
|
|
mv GPXSee.app $out/Applications
|
|
|
|
wrapQtApp $out/Applications/GPXSee.app/Contents/MacOS/GPXSee
|
|
|
|
'';
|
|
|
|
|
2018-09-02 12:17:22 +02:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2020-03-01 21:23:02 +01:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = "https://www.gpxsee.org/";
|
2019-05-30 13:00:25 +02:00
|
|
|
description = "GPS log file viewer and analyzer";
|
2018-01-28 15:54:37 +01:00
|
|
|
longDescription = ''
|
2019-05-30 13:00:25 +02:00
|
|
|
GPXSee is a Qt-based GPS log file viewer and analyzer that supports
|
|
|
|
all common GPS log file formats.
|
2018-01-28 15:54:37 +01:00
|
|
|
'';
|
2016-06-25 07:03:03 +02:00
|
|
|
license = licenses.gpl3;
|
2019-09-03 20:11:22 +02:00
|
|
|
maintainers = with maintainers; [ womfoo sikmir ];
|
2020-01-29 11:07:56 +01:00
|
|
|
platforms = with platforms; linux ++ darwin;
|
2016-06-25 07:03:03 +02:00
|
|
|
};
|
|
|
|
}
|