35 lines
812 B
Nix
35 lines
812 B
Nix
{ mkDerivation, lib, fetchFromGitHub, qmake, qttools }:
|
|
|
|
mkDerivation rec {
|
|
pname = "gpxsee";
|
|
version = "7.16";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "tumic0";
|
|
repo = "GPXSee";
|
|
rev = version;
|
|
sha256 = "1mkfhb2c9qafjpva600nyn6yik49l4q1k6id1xvrci37wsn6ijav";
|
|
};
|
|
|
|
nativeBuildInputs = [ qmake ];
|
|
buildInputs = [ qttools ];
|
|
|
|
preConfigure = ''
|
|
lrelease lang/*.ts
|
|
'';
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = with lib; {
|
|
homepage = https://www.gpxsee.org/;
|
|
description = "GPS log file viewer and analyzer";
|
|
longDescription = ''
|
|
GPXSee is a Qt-based GPS log file viewer and analyzer that supports
|
|
all common GPS log file formats.
|
|
'';
|
|
license = licenses.gpl3;
|
|
maintainers = with maintainers; [ womfoo sikmir ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|