mirror of
https://github.com/m-labs/artiq.git
synced 2024-12-11 12:46:37 +08:00
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 ];
|
||
|
}
|