From 9c3e77446c133d259e2967425e225f48384ba039 Mon Sep 17 00:00:00 2001 From: Sebastien Bourdeauducq Date: Tue, 1 Jun 2021 19:42:39 +0800 Subject: [PATCH] openocd: limit autocrap version --- artiq-fast/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/artiq-fast/default.nix b/artiq-fast/default.nix index bd1cbb5..09f24fc 100644 --- a/artiq-fast/default.nix +++ b/artiq-fast/default.nix @@ -35,7 +35,7 @@ let libartiq-support = callPackage ./pkgs/libartiq-support.nix { inherit rustc; }; artiq = callPackage ./pkgs/artiq.nix { inherit pythonDeps binutils-or1k binutils-arm llvm-or1k llvmlite-artiq libartiq-support lit outputcheck; }; artiq-env = (pkgs.python3.withPackages(ps: [ artiq ])).overrideAttrs (oldAttrs: { name = "${pkgs.python3.name}-artiq-env-${artiq.version}"; }); - openocd = callPackage ./pkgs/openocd.nix {}; + openocd = callPackage ./pkgs/openocd.nix { autoreconfHook = pkgs.autoreconfHook269 or pkgs.autoreconfHook; }; }; condaNoarch = {