install openocd in extended-tests environment

pull/16/head
Sebastien Bourdeauducq 2019-02-17 23:14:19 +08:00
parent 21a4d1c0b1
commit a901a2599e
1 changed files with 1 additions and 1 deletions

View File

@ -28,6 +28,6 @@ in
constituents = builtins.attrValues jobs;
};
extended-tests = pkgs.runCommand "extended-tests" {
propagatedBuildInputs = [(pkgs.python3.withPackages(ps: [artiqpkgs.artiq artiqpkgs.artiq-board-kc705-nist_clock]))];
propagatedBuildInputs = [(pkgs.python3.withPackages(ps: [artiqpkgs.artiq artiqpkgs.artiq-board-kc705-nist_clock])) artiqpkgs.openocd];
} "cp ${./extended-tests.py} $out;";
}