forked from M-Labs/artiq
nix: do not install development packages in user environment
This commit is contained in:
parent
1e7ba3227f
commit
e2799803cb
|
@ -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 ];
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue