mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-30 02:42:59 +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.
45 lines
1.4 KiB
Nix
45 lines
1.4 KiB
Nix
{ lib, stdenv, fetchFromGitLab, nix-update-script, nwjs, wrapGAppsHook }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "gridtracker";
|
|
version = "1.24.0104";
|
|
|
|
src = fetchFromGitLab {
|
|
owner = "gridtracker.org";
|
|
repo = "gridtracker";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-p3PdYOk0yvG3QkM17grzZmf9upK1n0zo4aOrlhGTvTU=";
|
|
};
|
|
|
|
nativeBuildInputs = [ wrapGAppsHook ];
|
|
|
|
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 = with lib; {
|
|
description = "An 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 = licenses.bsd3;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ melling ];
|
|
};
|
|
}
|