From a901a2599e349a37ea00abfcc6edc472431d4fe3 Mon Sep 17 00:00:00 2001 From: Sebastien Bourdeauducq Date: Sun, 17 Feb 2019 23:14:19 +0800 Subject: [PATCH] install openocd in extended-tests environment --- main.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.nix b/main.nix index 95174c7..4bd4b72 100644 --- a/main.nix +++ b/main.nix @@ -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;"; }