tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
gnuradio: add CoreAudio input for Darwin
Luke Adams
8 years ago
e81d84fc
861773bf
+5
-1
2 changed files
expand all
collapse all
unified
split
pkgs
applications
misc
gnuradio
default.nix
top-level
all-packages.nix
+4
-1
pkgs/applications/misc/gnuradio/default.nix
···
15
, wxPython, lxml
16
# => gr-audio: audio subsystems (system/OS dependent)
17
, alsaLib # linux 'audio-alsa'
0
18
# => uhd: the Ettus USRP Hardware Driver Interface
19
, uhd
20
# => gr-video-sdl: PAL and NTSC display
···
39
buildInputs = [
40
boost fftw python swig2 lxml qt4
41
qwt SDL libusb1 uhd gsl
42
-
] ++ stdenv.lib.optionals stdenv.isLinux [ alsaLib ];
0
0
43
propagatedBuildInputs = [
44
cheetah numpy scipy matplotlib pyqt4 pygtk wxPython pyopengl
45
];
···
15
, wxPython, lxml
16
# => gr-audio: audio subsystems (system/OS dependent)
17
, alsaLib # linux 'audio-alsa'
18
+
, CoreAudio # darwin 'audio-osx'
19
# => uhd: the Ettus USRP Hardware Driver Interface
20
, uhd
21
# => gr-video-sdl: PAL and NTSC display
···
40
buildInputs = [
41
boost fftw python swig2 lxml qt4
42
qwt SDL libusb1 uhd gsl
43
+
] ++ stdenv.lib.optionals stdenv.isLinux [ alsaLib ]
44
+
++ stdenv.lib.optionals stdenv.isDarwin [ CoreAudio ];
45
+
46
propagatedBuildInputs = [
47
cheetah numpy scipy matplotlib pyqt4 pygtk wxPython pyopengl
48
];
+1
pkgs/top-level/all-packages.nix
···
14648
14649
gnuradio = callPackage ../applications/misc/gnuradio {
14650
inherit (python2Packages) cheetah lxml matplotlib numpy python pyopengl pyqt4 scipy wxPython pygtk;
0
14651
fftw = fftwFloat;
14652
qwt = qwt6_qt4;
14653
};
···
14648
14649
gnuradio = callPackage ../applications/misc/gnuradio {
14650
inherit (python2Packages) cheetah lxml matplotlib numpy python pyopengl pyqt4 scipy wxPython pygtk;
14651
+
inherit (darwin.apple_sdk.frameworks) CoreAudio;
14652
fftw = fftwFloat;
14653
qwt = qwt6_qt4;
14654
};