mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 04:19:19 -08:00
chore: nfs-utils-ldap
This commit is contained in:
parent
292f54b28f
commit
217a553164
2 changed files with 16 additions and 0 deletions
|
|
@ -7,11 +7,13 @@ in rec {
|
|||
default = nixlib.composeManyExtensions [
|
||||
barcodebuddy
|
||||
krb5
|
||||
nfs
|
||||
nginx
|
||||
samba
|
||||
];
|
||||
barcodebuddy = import ./barcodebuddy.nix;
|
||||
krb5 = import ./krb5.nix;
|
||||
nfs = import ./nfs.nix;
|
||||
nginx = import ./nginx.nix;
|
||||
samba = import ./samba.nix;
|
||||
deploy-rs = inputs.deploy-rs.overlays.default or inputs.deploy-rs.overlay;
|
||||
|
|
|
|||
14
overlays/nfs.nix
Normal file
14
overlays/nfs.nix
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
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"
|
||||
];
|
||||
});
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue