From e2799803cb396f6fe6ad7738a75a4bb1fa20b1be Mon Sep 17 00:00:00 2001 From: Sebastien Bourdeauducq Date: Tue, 1 Jan 2019 23:35:55 +0800 Subject: [PATCH] nix: do not install development packages in user environment --- nix/shell.nix | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) 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 ]; }