overlays/openldap: skip failing checks for 32-bit
This commit is contained in:
parent
575a0e9610
commit
4c28a3eecb
2 changed files with 10 additions and 0 deletions
|
|
@ -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
9
overlays/openldap.nix
Normal 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;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue