aboutsummaryrefslogtreecommitdiffstats
path: root/src/nix/gnuradio-overlay.nix
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/nix/gnuradio-overlay.nix8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/nix/gnuradio-overlay.nix b/src/nix/gnuradio-overlay.nix
new file mode 100644
index 0000000..48145b8
--- /dev/null
+++ b/src/nix/gnuradio-overlay.nix
@@ -0,0 +1,8 @@
+self: super: {
+ gnuradio = super.gnuradio.override {
+ extraPythonPackages = super.lib.attrVals [
+ "setuptools"
+ # Add more python packages here if you need any.
+ ] super.gnuradio.unwrapped.python.pkgs;
+ };
+}