mirror of https://github.com/m-labs/artiq.git
9 lines
176 B
Nix
9 lines
176 B
Nix
|
{system ? builtins.currentSystem}:
|
||
|
let
|
||
|
pkgs = import <nixpkgs> {inherit system;};
|
||
|
artiq = pkgs.callPackage ./default.nix {};
|
||
|
in
|
||
|
pkgs.mkShell {
|
||
|
buildInputs = [ artiq ];
|
||
|
}
|