diff options
-rw-r--r-- | src/shell.nix | 21 |
1 files changed, 7 insertions, 14 deletions
diff --git a/src/shell.nix b/src/shell.nix index 4503a49..ae4375e 100644 --- a/src/shell.nix +++ b/src/shell.nix @@ -8,18 +8,11 @@ let }; in mkShell { - buildInputs = [ dearpygui ] ++ (with pkgs; []); + buildInputs = [ dearpygui ] ++ (with pkgs; [ + gnuradio + python38Packages.setuptools + # gnuradio block dev dependencies + cmake pkg-config log4cpp mpir boost175 gmp volk + python38Packages.pybind11 + ]); } - -# (pkgs.buildFHSUserEnv { -# name = "pipzone"; -# targetPkgs = pkgs: (with pkgs; [ -# python38 -# python38Packages.pip -# python38Packages.virtualenv -# libGL -# libGL_driver -# xorg.libX11 -# ]); -# runScript = "bash"; -# }).env |