Updated flake inputs

This commit is contained in:
2026-05-25 19:23:54 +02:00
parent 60dcf24b80
commit b04faa3602
2 changed files with 62 additions and 49 deletions

View File

@ -1,10 +1,9 @@
{...}: {
nixpkgs.overlays = [
#Skip checks of openldap (dependency for Lutris) as it is already tested enough upstream and is not needed directly
(final: prev: {
openldap = prev.openldap.overrideAttrs (_: {doCheck = false;});
# Also covers 32-bit builds pulled in by lutris
pkgsi686Linux = prev.pkgsi686Linux.extend (_: p: {
openldap = p.openldap.overrideAttrs (_: {doCheck = false;});
openldap = prev.openldap.overrideAttrs (old: {
doCheck = false;
});
})
];