We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 255bca1 commit 44cdb6bCopy full SHA for 44cdb6b
pkgs/applications/radio/welle-io/default.nix
@@ -17,6 +17,8 @@
17
fftwSinglePrec,
18
lame,
19
mpg123,
20
+ withFlac ? true,
21
+ flac,
22
}:
23
24
stdenv.mkDerivation rec {
@@ -48,12 +50,12 @@ stdenv.mkDerivation rec {
48
50
qt5compat
49
51
rtl-sdr
52
soapysdr-with-plugins
- ];
53
+ ] ++ lib.optional withFlac flac;
54
55
cmakeFlags = [
56
"-DRTLSDR=true"
57
"-DSOAPYSDR=true"
58
+ ] ++ lib.optional withFlac "-DFLAC=true";
59
60
meta = {
61
description = "DAB/DAB+ Software Radio";
0 commit comments