mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 20:39:18 -08:00
18 lines
391 B
Nix
18 lines
391 B
Nix
final: prev: {
|
|
# https://github.com/NixOS/nixpkgs/pull/286793
|
|
nfs-utils-ldap = prev.nfs-utils.overrideAttrs (old: {
|
|
buildInputs =
|
|
old.buildInputs
|
|
++ [
|
|
final.openldap
|
|
(final.cyrus_sasl.override {
|
|
openssl = final.openssl_legacy;
|
|
})
|
|
];
|
|
configureFlags =
|
|
old.configureFlags
|
|
++ [
|
|
"--enable-ldap"
|
|
];
|
|
});
|
|
}
|