2019-07-29 20:39:25 +01:00
|
|
|
{ mkDerivation, lib, fetchFromGitHub, qmake, qttools }:
|
2016-06-25 06:03:03 +01:00
|
|
|
|
2019-07-29 20:39:25 +01:00
|
|
|
mkDerivation rec {
|
2019-05-30 12:00:25 +01:00
|
|
|
pname = "gpxsee";
|
2019-11-11 07:13:14 +00:00
|
|
|
version = "7.17";
|
2016-06-25 06:03:03 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "tumic0";
|
|
|
|
repo = "GPXSee";
|
|
|
|
rev = version;
|
2019-11-11 07:13:14 +00:00
|
|
|
sha256 = "10mch709m4ws73yzkrx9lm2hwzl179ggpk6xkbhkvnl7rsd2yz08";
|
2016-06-25 06:03:03 +01:00
|
|
|
};
|
|
|
|
|
2019-07-29 20:39:25 +01:00
|
|
|
nativeBuildInputs = [ qmake ];
|
2018-09-02 11:17:22 +01:00
|
|
|
buildInputs = [ qttools ];
|
2017-04-16 08:13:32 +01:00
|
|
|
|
|
|
|
preConfigure = ''
|
|
|
|
lrelease lang/*.ts
|
2016-06-25 06:03:03 +01:00
|
|
|
'';
|
|
|
|
|
2018-09-02 11:17:22 +01:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2019-07-29 20:39:25 +01:00
|
|
|
meta = with lib; {
|
2019-01-05 09:44:07 +00:00
|
|
|
homepage = https://www.gpxsee.org/;
|
2019-05-30 12:00:25 +01:00
|
|
|
description = "GPS log file viewer and analyzer";
|
2018-01-28 14:54:37 +00:00
|
|
|
longDescription = ''
|
2019-05-30 12:00:25 +01:00
|
|
|
GPXSee is a Qt-based GPS log file viewer and analyzer that supports
|
|
|
|
all common GPS log file formats.
|
2018-01-28 14:54:37 +00:00
|
|
|
'';
|
2016-06-25 06:03:03 +01:00
|
|
|
license = licenses.gpl3;
|
2019-09-03 19:11:22 +01:00
|
|
|
maintainers = with maintainers; [ womfoo sikmir ];
|
2016-06-25 06:03:03 +01:00
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|