gnuradio: add CoreAudio input for Darwin
This commit is contained in:
parent
861773bfa5
commit
e81d84fcea
@ -15,6 +15,7 @@
|
|||||||
, wxPython, lxml
|
, wxPython, lxml
|
||||||
# => gr-audio: audio subsystems (system/OS dependent)
|
# => gr-audio: audio subsystems (system/OS dependent)
|
||||||
, alsaLib # linux 'audio-alsa'
|
, alsaLib # linux 'audio-alsa'
|
||||||
|
, CoreAudio # darwin 'audio-osx'
|
||||||
# => uhd: the Ettus USRP Hardware Driver Interface
|
# => uhd: the Ettus USRP Hardware Driver Interface
|
||||||
, uhd
|
, uhd
|
||||||
# => gr-video-sdl: PAL and NTSC display
|
# => gr-video-sdl: PAL and NTSC display
|
||||||
@ -39,7 +40,9 @@ stdenv.mkDerivation rec {
|
|||||||
buildInputs = [
|
buildInputs = [
|
||||||
boost fftw python swig2 lxml qt4
|
boost fftw python swig2 lxml qt4
|
||||||
qwt SDL libusb1 uhd gsl
|
qwt SDL libusb1 uhd gsl
|
||||||
] ++ stdenv.lib.optionals stdenv.isLinux [ alsaLib ];
|
] ++ stdenv.lib.optionals stdenv.isLinux [ alsaLib ]
|
||||||
|
++ stdenv.lib.optionals stdenv.isDarwin [ CoreAudio ];
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
propagatedBuildInputs = [
|
||||||
cheetah numpy scipy matplotlib pyqt4 pygtk wxPython pyopengl
|
cheetah numpy scipy matplotlib pyqt4 pygtk wxPython pyopengl
|
||||||
];
|
];
|
||||||
|
@ -14648,6 +14648,7 @@ with pkgs;
|
|||||||
|
|
||||||
gnuradio = callPackage ../applications/misc/gnuradio {
|
gnuradio = callPackage ../applications/misc/gnuradio {
|
||||||
inherit (python2Packages) cheetah lxml matplotlib numpy python pyopengl pyqt4 scipy wxPython pygtk;
|
inherit (python2Packages) cheetah lxml matplotlib numpy python pyopengl pyqt4 scipy wxPython pygtk;
|
||||||
|
inherit (darwin.apple_sdk.frameworks) CoreAudio;
|
||||||
fftw = fftwFloat;
|
fftw = fftwFloat;
|
||||||
qwt = qwt6_qt4;
|
qwt = qwt6_qt4;
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user