forked from M-Labs/artiq
nix: add shell starter
This commit is contained in:
parent
23ea8c81f3
commit
7f523e7e50
|
@ -0,0 +1,8 @@
|
||||||
|
{system ? builtins.currentSystem}:
|
||||||
|
let
|
||||||
|
pkgs = import <nixpkgs> {inherit system;};
|
||||||
|
artiq = pkgs.callPackage ./default.nix {};
|
||||||
|
in
|
||||||
|
pkgs.mkShell {
|
||||||
|
buildInputs = [ artiq ];
|
||||||
|
}
|
Loading…
Reference in New Issue