artiq/nix/shell.nix

8 lines
191 B
Nix
Raw Normal View History

let
pkgs = import <nixpkgs> {};
artiqpkgs = import ./default.nix { inherit pkgs; };
2018-08-24 19:03:25 +08:00
in
pkgs.mkShell {
buildInputs = with artiqpkgs; [ binutils-or1k llvm-or1k llvmlite artiq ];
}