Unverified Commit ae95a37b authored by Frederik Rietdijk's avatar Frederik Rietdijk Committed by GitHub
Browse files

Merge pull request #258056 from sarcasticadmin/rh/1695937430dirwolf

direwolf: make various buildInputs optional
parents 86dbce6d d5142778
Loading
Loading
Loading
Loading
+30 −12
Original line number Diff line number Diff line
{ lib, stdenv, fetchFromGitHub, cmake, alsa-lib, espeak, gpsd
, hamlib, perl, python3, udev }:

with lib;
{ lib
, stdenv
, fetchFromGitHub
, cmake
, alsa-lib
, gpsd
, gpsdSupport ? false
, hamlib
, hamlibSupport ? true
, perl
, python3
, espeak
, udev
, extraScripts ? false
}:

stdenv.mkDerivation rec {
  pname = "direwolf";
@@ -18,9 +29,14 @@ stdenv.mkDerivation rec {

  strictDeps = true;

  buildInputs = [
    espeak gpsd hamlib perl python3
  ] ++ (optionals stdenv.isLinux [alsa-lib udev]);
  buildInputs = lib.optionals stdenv.isLinux [ alsa-lib udev ]
    ++ lib.optionals gpsdSupport [ gpsd ]
    ++ lib.optionals hamlibSupport [ hamlib ]
    ++ lib.optionals extraScripts [ python3 perl espeak ];

  preConfigure = lib.optionals (!extraScripts) ''
    echo "" > scripts/CMakeLists.txt
  '';

  postPatch = ''
    substituteInPlace conf/CMakeLists.txt \
@@ -31,21 +47,23 @@ stdenv.mkDerivation rec {
    substituteInPlace src/decode_aprs.c \
      --replace /usr/share/direwolf/tocalls.txt $out/share/direwolf/tocalls.txt \
      --replace /opt/local/share/direwolf/tocalls.txt $out/share/direwolf/tocalls.txt
    patchShebangs scripts/dwespeak.sh
    substituteInPlace scripts/dwespeak.sh \
      --replace espeak ${espeak}/bin/espeak
    substituteInPlace cmake/cpack/direwolf.desktop.in \
      --replace 'Terminal=false' 'Terminal=true' \
      --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
  '';

  meta = {
  meta = with lib; {
    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 ];
    maintainers = with maintainers; [ lasandell sarcasticadmin ];
  };
}