Commit 8b601a11 authored by arcnmx's avatar arcnmx
Browse files

scream: optional `pcapSupport`

parent 4da422e2
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -2,6 +2,7 @@
, alsaSupport ? stdenv.isLinux, alsa-lib
, pulseSupport ? config.pulseaudio or stdenv.isLinux, libpulseaudio
, jackSupport ? false, libjack2, soxr
, pcapSupport ? false, libpcap
}:

stdenv.mkDerivation rec {
@@ -17,13 +18,15 @@ stdenv.mkDerivation rec {

  buildInputs = lib.optional pulseSupport libpulseaudio
    ++ lib.optionals jackSupport [ libjack2 soxr ]
    ++ lib.optional alsaSupport alsa-lib;
    ++ lib.optional alsaSupport alsa-lib
    ++ lib.optional pcapSupport libpcap;
  nativeBuildInputs = [ cmake pkg-config ];

  cmakeFlags = [
    "-DPULSEAUDIO_ENABLE=${if pulseSupport then "ON" else "OFF"}"
    "-DALSA_ENABLE=${if alsaSupport then "ON" else "OFF"}"
    "-DJACK_ENABLE=${if jackSupport then "ON" else "OFF"}"
    "-DPCAP_ENABLE=${if pcapSupport then "ON" else "OFF"}"
  ];

  cmakeDir = "../Receivers/unix";