diff options
author | Naoki Pross <np@0hm.ch> | 2021-10-24 15:45:03 +0200 |
---|---|---|
committer | Naoki Pross <np@0hm.ch> | 2021-10-24 15:45:03 +0200 |
commit | f203414b019f95af5b4a9391f1f9962a937e60c0 (patch) | |
tree | 048392e6fc3417037c8598397f234af5765fa4c0 /src/nix | |
parent | Make gr block compilable (diff) | |
download | Fading-f203414b019f95af5b4a9391f1f9962a937e60c0.tar.gz Fading-f203414b019f95af5b4a9391f1f9962a937e60c0.zip |
Create nix overlay for gnuradio
Diffstat (limited to '')
-rw-r--r-- | src/nix/dearpygui.nix (renamed from src/dearpygui.nix) | 0 | ||||
-rw-r--r-- | src/nix/gnuradio-overlay.nix | 8 |
2 files changed, 8 insertions, 0 deletions
diff --git a/src/dearpygui.nix b/src/nix/dearpygui.nix index 1b26eaf..1b26eaf 100644 --- a/src/dearpygui.nix +++ b/src/nix/dearpygui.nix 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; + }; +} |