From 47169bbd0cebfa7c910ef2b3337b70b91148bc2d Mon Sep 17 00:00:00 2001 From: Lumpiasty Date: Fri, 8 May 2026 00:37:44 +0200 Subject: [PATCH] workaround for openldap failure --- overlays/pkgs.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/overlays/pkgs.nix b/overlays/pkgs.nix index 3cfea2a..d401c48 100644 --- a/overlays/pkgs.nix +++ b/overlays/pkgs.nix @@ -1,4 +1,9 @@ self: super: { opencode-claude-auth = super.callPackage ../pkgs/opencode-claude-auth {}; + # Build failure 08.05.2026 + # https://github.com/NixOS/nixpkgs/issues/513245#issuecomment-4320293674 + openldap = super.openldap.overrideAttrs { + doCheck = !super.stdenv.hostPlatform.isi686; + }; } \ No newline at end of file