mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-26 04:43:09 +03:00
Fix wrong condition related to enableKerberos
This commit is contained in:
parent
7297255019
commit
9bf2c6a8ab
@ -65,7 +65,7 @@ stdenv.mkDerivation rec {
|
||||
"--private-libraries=NONE"
|
||||
"--builtin-libraries=replace"
|
||||
]
|
||||
++ optional (enableKerberos != null && kerberos.implementation == "krb5") "--with-system-mitkrb5"
|
||||
++ optional (enableKerberos && kerberos.implementation == "krb5") "--with-system-mitkrb5"
|
||||
++ optional (!enableDomainController) "--without-ad-dc"
|
||||
++ optionals (!enableLDAP) [ "--without-ldap" "--without-ads" ];
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user