mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-27 15:23:26 +00:00
ff1a94e523
The nixpkgs-unstable channel's programs.sqlite was used to identify packages producing exactly one binary, and these automatically added to their package definitions wherever possible.
77 lines
1.6 KiB
Nix
77 lines
1.6 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, qmake
|
|
, nix-update-script
|
|
, qtbase
|
|
, qttools
|
|
, qtlocation ? null # qt5 only
|
|
, qtpositioning ? null # qt6 only
|
|
, qtserialport
|
|
, qtsvg
|
|
, qt5compat ? null # qt6 only
|
|
, wrapQtAppsHook
|
|
}:
|
|
|
|
let
|
|
isQt6 = lib.versions.major qtbase.version == "6";
|
|
in
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "gpxsee";
|
|
version = "13.17";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "tumic0";
|
|
repo = "GPXSee";
|
|
rev = finalAttrs.version;
|
|
hash = "sha256-pk6PMQDPvyfUS5PMRu6pz/QrRrOfbq9oGsMk0ZDawDM=";
|
|
};
|
|
|
|
buildInputs = [
|
|
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 = {
|
|
broken = isQt6 && stdenv.isDarwin;
|
|
changelog = "https://build.opensuse.org/package/view_file/home:tumic:GPXSee/gpxsee/gpxsee.changes";
|
|
description = "GPS log file viewer and analyzer";
|
|
mainProgram = "gpxsee";
|
|
homepage = "https://www.gpxsee.org/";
|
|
license = lib.licenses.gpl3Only;
|
|
longDescription = ''
|
|
GPXSee is a Qt-based GPS log file viewer and analyzer that supports
|
|
all common GPS log file formats.
|
|
'';
|
|
maintainers = with lib.maintainers; [ womfoo sikmir ];
|
|
platforms = lib.platforms.unix;
|
|
};
|
|
})
|