forked from mirrors/nixpkgs
81 lines
1.8 KiB
Nix
81 lines
1.8 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, qmake
|
|
, nix-update-script
|
|
, substituteAll
|
|
, qtbase
|
|
, qttools
|
|
, qttranslations
|
|
, qtlocation ? null # qt5 only
|
|
, qtpositioning ? null # qt6 only
|
|
, qtpbfimageplugin
|
|
, qtserialport
|
|
, qtsvg
|
|
, qt5compat ? null # qt6 only
|
|
, wrapQtAppsHook
|
|
}:
|
|
|
|
let
|
|
isQt6 = lib.versions.major qtbase.version == "6";
|
|
|
|
in
|
|
stdenv.mkDerivation rec {
|
|
pname = "gpxsee";
|
|
version = "12.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "tumic0";
|
|
repo = "GPXSee";
|
|
rev = version;
|
|
hash = "sha256-d+hQNI+eCSMRFMzq09wL+GN9TgOIt245Z8GlPe7nY8E=";
|
|
};
|
|
|
|
patches = (substituteAll {
|
|
# See https://github.com/NixOS/nixpkgs/issues/86054
|
|
src = ./fix-qttranslations-path.diff;
|
|
inherit qttranslations;
|
|
});
|
|
|
|
buildInputs = [ qtpbfimageplugin qtserialport ]
|
|
++ (if isQt6 then [
|
|
qtbase
|
|
qtpositioning
|
|
qtsvg
|
|
qt5compat
|
|
] else [
|
|
qtlocation
|
|
]);
|
|
|
|
nativeBuildInputs = [ qmake qttools wrapQtAppsHook ];
|
|
|
|
preConfigure = ''
|
|
lrelease gpxsee.pro
|
|
'';
|
|
|
|
postInstall = lib.optionalString stdenv.isDarwin ''
|
|
mkdir -p $out/Applications
|
|
mv GPXSee.app $out/Applications
|
|
mkdir -p $out/bin
|
|
ln -s $out/Applications/GPXSee.app/Contents/MacOS/GPXSee $out/bin/gpxsee
|
|
'';
|
|
|
|
passthru = {
|
|
updateScript = nix-update-script { };
|
|
};
|
|
|
|
meta = with lib; {
|
|
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.
|
|
'';
|
|
homepage = "https://www.gpxsee.org/";
|
|
changelog = "https://build.opensuse.org/package/view_file/home:tumic:GPXSee/gpxsee/gpxsee.changes";
|
|
license = licenses.gpl3Only;
|
|
maintainers = with maintainers; [ womfoo sikmir ];
|
|
platforms = platforms.unix;
|
|
broken = isQt6 && stdenv.isDarwin;
|
|
};
|
|
}
|