forked from M-Labs/artiq
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 ];
|
||
|
}
|