samba: make kerberos optional
svn path=/nixpkgs/trunk/; revision=21397
This commit is contained in:
parent
0089b865e9
commit
8a1dd10d81
@ -1,5 +1,6 @@
|
||||
{ stdenv, fetchurl, readline, pam, openldap, kerberos, popt
|
||||
, iniparser, libunwind, fam, acl
|
||||
{ stdenv, fetchurl, readline, pam, openldap, popt, iniparser, libunwind, fam
|
||||
, acl
|
||||
, useKerberos ? false, kerberos ? null
|
||||
|
||||
# Eg. smbclient and smbspool require a smb.conf file.
|
||||
# If you set configDir to "" an empty configuration file
|
||||
@ -20,7 +21,8 @@ stdenv.mkDerivation rec {
|
||||
sha256 = "08x3ng7ls5c1a95v7djx362i55wdlmnvarpr7rhng5bb55s9n5qn";
|
||||
};
|
||||
|
||||
buildInputs = [readline pam openldap kerberos popt iniparser libunwind fam acl];
|
||||
buildInputs = [readline pam openldap popt iniparser libunwind fam acl]
|
||||
++ stdenv.lib.optional useKerberos kerberos;
|
||||
|
||||
preConfigure = "cd source";
|
||||
|
||||
|
@ -5648,7 +5648,7 @@ let
|
||||
|
||||
samba = makeOverridable (import ../servers/samba) {
|
||||
inherit stdenv fetchurl readline openldap pam kerberos popt iniparser
|
||||
libunwind acl fam;
|
||||
libunwind acl fam;
|
||||
};
|
||||
|
||||
shishi = import ../servers/shishi {
|
||||
|
Loading…
Reference in New Issue
Block a user