From b96de6c275ede7bcc74ea1101ca6ba6ecf8deddf Mon Sep 17 00:00:00 2001 From: zowoq <59103226+zowoq@users.noreply.github.com> Date: Mon, 10 Oct 2022 15:33:02 +1000 Subject: [PATCH] infracost: mark broken on x86_64 --- pkgs/tools/misc/infracost/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/tools/misc/infracost/default.nix b/pkgs/tools/misc/infracost/default.nix index 9f7e0f0bf2cf..32f311c6ee7c 100644 --- a/pkgs/tools/misc/infracost/default.nix +++ b/pkgs/tools/misc/infracost/default.nix @@ -1,4 +1,4 @@ -{ lib, buildGoModule, fetchFromGitHub, installShellFiles }: +{ lib, buildGoModule, fetchFromGitHub, installShellFiles, stdenv }: buildGoModule rec { pname = "infracost"; @@ -63,5 +63,6 @@ buildGoModule rec { ''; license = licenses.asl20; maintainers = with maintainers; [ davegallant jk ]; + broken = stdenv.isx86_64; # https://hydra.nixos.org/build/193087915 }; }