diff --git a/nix/shell.nix b/nix/shell.nix index cbcea74f3..2c324158a 100644 --- a/nix/shell.nix +++ b/nix/shell.nix @@ -3,9 +3,5 @@ let artiqpkgs = import ./default.nix { inherit pkgs; }; in pkgs.mkShell { - buildInputs = with artiqpkgs; [ rustc cargo binutils-or1k llvm-or1k llvmlite migen misoc artiq ] - ++ (with pkgs; [ python3 python36Packages.jinja2 python36Packages.numpy ]); # for artiq the python lib... - shellHook = '' - export TARGET_AR=${artiqpkgs.binutils-or1k}/bin/or1k-linux-ar - ''; + buildInputs = with artiqpkgs; [ binutils-or1k llvm-or1k llvmlite artiq ]; }