Files
quantenzitrone 6b61249106 various: switch to finalAttrs pattern
this shouldn't create any rebuilds
2026-01-30 02:36:22 +01:00

54 lines
1.4 KiB
Nix

{
lib,
stdenv,
fetchFromGitLab,
nix-update-script,
nwjs,
wrapGAppsHook3,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "gridtracker";
version = "1.24.0922";
src = fetchFromGitLab {
owner = "gridtracker.org";
repo = "gridtracker";
rev = "v${finalAttrs.version}";
hash = "sha256-6WgP13JVOzYnYtCDH3qCQXT70X9j4yqlUb18FFf1aSY=";
};
nativeBuildInputs = [ wrapGAppsHook3 ];
postPatch = ''
substituteInPlace Makefile \
--replace '$(DESTDIR)/usr' '$(DESTDIR)/'
substituteInPlace gridtracker.sh \
--replace "exec nw" "exec ${nwjs}/bin/nw" \
--replace "/usr/share/gridtracker" "$out/share/gridtracker"
substituteInPlace gridtracker.desktop \
--replace "/usr/share/gridtracker/gridview.png" "$out/share/gridtracker/gridview.png"
'';
makeFlags = [
"DESTDIR=$(out)"
"NO_DIST_INSTALL=1"
];
passthru.updateScript = nix-update-script { };
meta = {
description = "Amateur radio companion to WSJT-X or JTDX";
mainProgram = "gridtracker";
longDescription = ''
GridTracker listens to traffic from WSJT-X/JTDX, displays it on a map,
and has a sophisticated alerting and filtering system for finding and
working interesting stations. It also will upload QSO records to multiple
logging frameworks including Logbook of the World.
'';
homepage = "https://gridtracker.org";
license = lib.licenses.bsd3;
platforms = lib.platforms.linux;
};
})