mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-10 04:49:19 -08:00
14 lines
353 B
Nix
14 lines
353 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"
|
|
];
|
|
});
|
|
}
|