From 3bb24d3a5a200af2fbdb6e48d319c4c34a5ca498 Mon Sep 17 00:00:00 2001 From: Thomas Boerger Date: Wed, 28 Sep 2022 08:13:55 +0200 Subject: [PATCH] fix: skip tests for aws-c-common as they fail on armv7l --- overlays/default.nix | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/overlays/default.nix b/overlays/default.nix index 30a2777..097e8a2 100644 --- a/overlays/default.nix +++ b/overlays/default.nix @@ -1,3 +1,8 @@ self: super: -{} +{ + aws-c-common = super.aws-c-common.overrideAttrs (old: { + doCheck = false; + doInstallCheck = false; + }); +}