about summary refs log tree commit diff
path: root/pkgs/applications/radio
diff options
context:
space:
mode:
authorRaymond Douglas <r@rymnd.org>2023-10-21 13:24:12 -0700
committerAnderson Torres <torres.anderson.85@protonmail.com>2023-10-22 16:57:54 -0300
commite80f82aa1edc853339ae889568cfa430808b0dfe (patch)
treefe66c3669772dca9419fe94c19a1dbd1461230cb /pkgs/applications/radio
parenta37d70e902fed9b9c0d1d4ac978e4373b86cc9bb (diff)
direwolf: add portaudio dependency and buildInput
Diffstat (limited to 'pkgs/applications/radio')
-rw-r--r--pkgs/applications/radio/direwolf/default.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/pkgs/applications/radio/direwolf/default.nix b/pkgs/applications/radio/direwolf/default.nix
index c93f336b6059d..321e78ce9138d 100644
--- a/pkgs/applications/radio/direwolf/default.nix
+++ b/pkgs/applications/radio/direwolf/default.nix
@@ -8,6 +8,7 @@
 , hamlib
 , hamlibSupport ? true
 , perl
+, portaudio
 , python3
 , espeak
 , udev
@@ -32,6 +33,7 @@ stdenv.mkDerivation rec {
   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 ];