kerberos: Use default kerberos instead of krb5

This commit is contained in:
William A. Kennington III
2014-12-30 00:05:12 -08:00
parent 18892629c2
commit afeef240dc
10 changed files with 21 additions and 21 deletions

View File

@@ -1,4 +1,4 @@
{ stdenv, fetchurl, linuxHeaders, readline, openssl, flex, krb5, pam }:
{ stdenv, fetchurl, linuxHeaders, readline, openssl, flex, kerberos, pam }:
# TODO: These tools are supposed to work under NetBSD and FreeBSD as
# well, so I guess it's not appropriate to place this expression in
@@ -14,7 +14,7 @@ stdenv.mkDerivation rec {
sha256 = "0b9gfbz78k2nj0k7jdlm5kajig628ja9qm0z5yksiwz22s3v7dlf";
};
buildInputs = [ readline openssl flex krb5 pam ];
buildInputs = [ readline openssl flex kerberos pam ];
patches = [ ./dont-create-localstatedir-during-install.patch ];