nix: do not install development packages in user environment

pull/1234/head
Sebastien Bourdeauducq 2019-01-01 23:35:55 +08:00
parent 1e7ba3227f
commit e2799803cb
1 changed files with 1 additions and 5 deletions

View File

@ -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 ];
}