2019-02-15 18:17:34 +08:00
|
|
|
{ pkgs ? import <nixpkgs> {}}:
|
|
|
|
|
2019-02-14 15:29:42 +08:00
|
|
|
let
|
|
|
|
artiqpkgs = import ./default.nix { inherit pkgs; };
|
|
|
|
in
|
|
|
|
pkgs.mkShell {
|
2019-02-19 11:35:12 +08:00
|
|
|
buildInputs = [ (pkgs.python3.withPackages(ps: [artiqpkgs.artiq])) ];
|
2019-02-14 15:29:42 +08:00
|
|
|
}
|