9 lines
189 B
Nix
9 lines
189 B
Nix
{ pkgs ? import <nixpkgs> {}}:
|
|
|
|
let
|
|
artiqpkgs = import ./default.nix { inherit pkgs; };
|
|
in
|
|
pkgs.mkShell {
|
|
buildInputs = [ (pkgs.python3.withPackages(ps: [artiqpkgs.artiq])) ];
|
|
}
|