nixpkgs/pkgs/applications/radio/direwolf/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

72 lines
2.1 KiB
Nix
Raw Normal View History

2023-09-29 16:32:59 +00:00
{ lib
, stdenv
, fetchFromGitHub
, cmake
, alsa-lib
, gpsd
, gpsdSupport ? false
2023-09-29 16:32:59 +00:00
, hamlib
, hamlibSupport ? true
2023-09-29 16:32:59 +00:00
, perl
, portaudio
2023-09-29 16:32:59 +00:00
, python3
, espeak
, udev
, extraScripts ? false
2023-09-29 16:32:59 +00:00
}:
2020-07-18 00:46:44 +00:00
stdenv.mkDerivation rec {
pname = "direwolf";
2023-10-28 23:32:55 +00:00
version = "1.7";
2020-07-18 00:46:44 +00:00
src = fetchFromGitHub {
owner = "wb2osz";
repo = "direwolf";
rev = version;
2023-10-28 23:32:55 +00:00
hash = "sha256-Vbxc6a6CK+wrBfs15dtjfRa1LJDKKyHMrg8tqsF7EX4=";
2020-07-18 00:46:44 +00:00
};
2020-12-04 17:52:02 +00:00
nativeBuildInputs = [ cmake ];
2021-03-25 11:17:45 +00:00
strictDeps = true;
buildInputs = lib.optionals stdenv.isLinux [ alsa-lib udev ]
++ lib.optionals stdenv.isDarwin [ portaudio ]
++ lib.optionals gpsdSupport [ gpsd ]
++ lib.optionals hamlibSupport [ hamlib ]
++ lib.optionals extraScripts [ python3 perl espeak ];
preConfigure = lib.optionals (!extraScripts) ''
echo "" > scripts/CMakeLists.txt
'';
2020-07-18 00:46:44 +00:00
postPatch = ''
2021-10-02 22:56:12 +00:00
substituteInPlace conf/CMakeLists.txt \
--replace /etc/udev/rules.d/ $out/lib/udev/rules.d/
2020-12-04 17:52:02 +00:00
substituteInPlace src/symbols.c \
2020-07-18 00:46:44 +00:00
--replace /usr/share/direwolf/symbols-new.txt $out/share/direwolf/symbols-new.txt \
--replace /opt/local/share/direwolf/symbols-new.txt $out/share/direwolf/symbols-new.txt
2020-12-04 17:52:02 +00:00
substituteInPlace src/decode_aprs.c \
2020-07-18 00:46:44 +00:00
--replace /usr/share/direwolf/tocalls.txt $out/share/direwolf/tocalls.txt \
--replace /opt/local/share/direwolf/tocalls.txt $out/share/direwolf/tocalls.txt
2020-12-04 17:52:02 +00:00
substituteInPlace cmake/cpack/direwolf.desktop.in \
--replace 'Terminal=false' 'Terminal=true' \
2021-10-02 22:56:12 +00:00
--replace 'Exec=@APPLICATION_DESKTOP_EXEC@' 'Exec=direwolf'
substituteInPlace src/dwgpsd.c \
--replace 'GPSD_API_MAJOR_VERSION > 11' 'GPSD_API_MAJOR_VERSION > 14'
''
+ lib.optionalString extraScripts ''
patchShebangs scripts/dwespeak.sh
substituteInPlace scripts/dwespeak.sh \
--replace espeak ${espeak}/bin/espeak
2020-07-18 00:46:44 +00:00
'';
2023-09-29 16:32:59 +00:00
meta = with lib; {
2020-07-18 00:46:44 +00:00
description = "A Soundcard Packet TNC, APRS Digipeater, IGate, APRStt gateway";
homepage = "https://github.com/wb2osz/direwolf/";
license = licenses.gpl2;
platforms = platforms.unix;
maintainers = with maintainers; [ lasandell sarcasticadmin ];
2020-07-18 00:46:44 +00:00
};
}