nixpkgs/pkgs/applications/misc/gpxsee/default.nix

35 lines
799 B
Nix
Raw Normal View History

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