From f263caa2db965ded17cbeb02280dc0174bd73587 Mon Sep 17 00:00:00 2001 From: Nao Pross Date: Sat, 27 Nov 2021 14:46:47 +0100 Subject: Move network code and update nix files --- src/shell.nix | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'src/shell.nix') diff --git a/src/shell.nix b/src/shell.nix index 666bab3..22771e2 100644 --- a/src/shell.nix +++ b/src/shell.nix @@ -7,10 +7,18 @@ let isPy38 = pkgs.python38Packages.isPy38; }; + numpy-ringbuffer = callPackage ./nix/numpy-ringbuffer.nix { + buildPythonPackage = pkgs.python38Packages.buildPythonPackage; + fetchPypi = pkgs.python38Packages.fetchPypi; + isPy38 = pkgs.python38Packages.isPy38; + }; + in mkShell { - buildInputs = [ dearpygui ] ++ (with pkgs; [ + buildInputs = [ dearpygui numpy-ringbuffer ] ++ (with pkgs; [ gnuradio python38Packages.setuptools + python38Packages.matplotlib + python38Packages.numpy # gnuradio block dev dependencies cmake ninja pkg-config log4cpp mpir boost175 gmp volk doxygen python38Packages.pybind11 -- cgit v1.2.1