simplify shell.nix

pull/16/head
Sebastien Bourdeauducq 2019-02-19 11:35:12 +08:00
parent 987ead50fb
commit 953ace12e0
1 changed files with 1 additions and 1 deletions

View File

@ -4,5 +4,5 @@ let
artiqpkgs = import ./default.nix { inherit pkgs; };
in
pkgs.mkShell {
buildInputs = with artiqpkgs; [ binutils-or1k llvm-or1k llvmlite-artiq artiq ];
buildInputs = [ (pkgs.python3.withPackages(ps: [artiqpkgs.artiq])) ];
}