summary refs log tree commit diff
path: root/pkgs/applications/misc/gnuradio
diff options
context:
space:
mode:
authorLuke Adams <luke.adams@belljar.io>2017-07-14 18:22:07 -0500
committerLuke Adams <luke.adams@belljar.io>2017-11-22 16:42:20 -0600
commitba49dfb318dd892677788b9850a2717cdbf8e215 (patch)
tree021d4d068c18dab269f1f67588f1f2999b17bf76 /pkgs/applications/misc/gnuradio
parent60d95cc41a77381ca6513b00ddfa61e9f5327c46 (diff)
downloadnixlib-ba49dfb318dd892677788b9850a2717cdbf8e215.tar
nixlib-ba49dfb318dd892677788b9850a2717cdbf8e215.tar.gz
nixlib-ba49dfb318dd892677788b9850a2717cdbf8e215.tar.bz2
nixlib-ba49dfb318dd892677788b9850a2717cdbf8e215.tar.lz
nixlib-ba49dfb318dd892677788b9850a2717cdbf8e215.tar.xz
nixlib-ba49dfb318dd892677788b9850a2717cdbf8e215.tar.zst
nixlib-ba49dfb318dd892677788b9850a2717cdbf8e215.zip
gnuradio: document purpose of package inputs
Diffstat (limited to 'pkgs/applications/misc/gnuradio')
-rw-r--r--pkgs/applications/misc/gnuradio/default.nix28
1 files changed, 15 insertions, 13 deletions
diff --git a/pkgs/applications/misc/gnuradio/default.nix b/pkgs/applications/misc/gnuradio/default.nix
index 0156122ec79a..338763d980e2 100644
--- a/pkgs/applications/misc/gnuradio/default.nix
+++ b/pkgs/applications/misc/gnuradio/default.nix
@@ -1,24 +1,26 @@
-{ stdenv, fetchurl
-# core dependencies
+{ stdenv, fetchurl, makeWrapper
+# Dependencies documented @ https://gnuradio.org/doc/doxygen/build_guide.html
+# => core dependencies
 , cmake, pkgconfig, git, boost, cppunit, fftw
-# python wrappers
+# => python wrappers
+# May be able to upgrade to swig3
 , python, swig2, numpy, scipy, matplotlib
-# grc - the gnu radio companion
+# => grc - the gnu radio companion
 , cheetah, pygtk
-# gr-wavelet: collection of wavelet blocks
+# => gr-wavelet: collection of wavelet blocks
 , gsl
-# gr-qtgui: the Qt-based GUI
-, qt4, qwt, pyqt4 #, pyqwt
-# gr-wxgui: the Wx-based GUI
+# => gr-qtgui: the Qt-based GUI
+, qt4, qwt, pyqt4
+# => gr-wxgui: the Wx-based GUI
 , wxPython, lxml
-# gr-audio: audio subsystems (system/OS dependent)
-, alsaLib
-# uhd: the Ettus USRP Hardware Driver Interface
+# => gr-audio: audio subsystems (system/OS dependent)
+, alsaLib   # linux   'audio-alsa'
+# => uhd: the Ettus USRP Hardware Driver Interface
 , uhd
-# gr-video-sdl: PAL and NTSC display
+# => gr-video-sdl: PAL and NTSC display
 , SDL
+# Other
 , libusb1, orc, pyopengl
-, makeWrapper
 }:
 
 stdenv.mkDerivation rec {