overlays/openldap: skip failing checks for 32-bit

This commit is contained in:
Cilly Leang 2026-05-11 01:05:27 +10:00
parent 575a0e9610
commit 4c28a3eecb
Signed by: cilly
GPG key ID: 6500251E087653C9
2 changed files with 10 additions and 0 deletions

View file

@ -5,6 +5,7 @@ builtins.map (path: import path) [
./eww.nix
./jetbrains.nix
./material-icons.nix
./openldap.nix
./steam.nix
./utillinux.nix
./wpa-supplicant.nix

9
overlays/openldap.nix Normal file
View file

@ -0,0 +1,9 @@
self: super: {
# openldap i686 fails checks
# issue: https://github.com/NixOS/nixpkgs/issues/514113
# workaround: https://github.com/NixOS/nixpkgs/issues/513245#issuecomment-4320293674
# fix: https://github.com/NixOS/nixpkgs/pull/515956
openldap = super.openldap.overrideAttrs {
doCheck = !self.stdenv.hostPlatform.isi686;
};
}