mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 04:19:19 -08:00
chore: nf-fmt-nix
This commit is contained in:
parent
7486517713
commit
9903866044
160 changed files with 4570 additions and 3019 deletions
|
|
@ -1,14 +1,18 @@
|
|||
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"
|
||||
];
|
||||
buildInputs =
|
||||
old.buildInputs
|
||||
++ [
|
||||
final.openldap
|
||||
(final.cyrus_sasl.override {
|
||||
openssl = final.openssl_legacy;
|
||||
})
|
||||
];
|
||||
configureFlags =
|
||||
old.configureFlags
|
||||
++ [
|
||||
"--enable-ldap"
|
||||
];
|
||||
});
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue