mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-10 04:49:19 -08:00
15 lines
303 B
Nix
15 lines
303 B
Nix
final: prev: {
|
|
# https://github.com/NixOS/nixpkgs/pull/342130
|
|
nfs-utils-ldap = prev.nfs-utils.overrideAttrs (old: {
|
|
buildInputs =
|
|
old.buildInputs
|
|
++ [
|
|
final.cyrus_sasl
|
|
];
|
|
configureFlags =
|
|
old.configureFlags
|
|
++ [
|
|
"--enable-ldap"
|
|
];
|
|
});
|
|
}
|