nixpkgs/pkgs/applications/misc/gpxsee/default.nix
2019-09-29 22:22:20 +03:00

35 lines
812 B
Nix

{ mkDerivation, lib, fetchFromGitHub, qmake, qttools }:
mkDerivation rec {
pname = "gpxsee";
version = "7.14";
src = fetchFromGitHub {
owner = "tumic0";
repo = "GPXSee";
rev = version;
sha256 = "13lxjbc54mw2d5jn0q61wjzm0hk2f6vmbvw11n7z8p62n8q30nvb";
};
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;
};
}