summary refs log tree commit diff
path: root/pkgs/development/libraries/cyrus-sasl
diff options
context:
space:
mode:
authorSandro Jäckel <sandro.jaeckel@gmail.com>2021-03-14 17:11:48 +0100
committerSandro Jäckel <sandro.jaeckel@gmail.com>2021-04-04 03:18:56 +0200
commitdcb501f99325920c7f9df536b738f863c12a165e (patch)
treeae1f27958f3a5ec515b29848a9c93fdde026a261 /pkgs/development/libraries/cyrus-sasl
parent9378fdf87e0626e8c63a90a378c38444ff54808b (diff)
downloadnixpkgs-dcb501f99325920c7f9df536b738f863c12a165e.tar
nixpkgs-dcb501f99325920c7f9df536b738f863c12a165e.tar.gz
nixpkgs-dcb501f99325920c7f9df536b738f863c12a165e.tar.bz2
nixpkgs-dcb501f99325920c7f9df536b738f863c12a165e.tar.lz
nixpkgs-dcb501f99325920c7f9df536b738f863c12a165e.tar.xz
nixpkgs-dcb501f99325920c7f9df536b738f863c12a165e.tar.zst
nixpkgs-dcb501f99325920c7f9df536b738f863c12a165e.zip
kerberos: deprecate alias
Diffstat (limited to 'pkgs/development/libraries/cyrus-sasl')
-rw-r--r--pkgs/development/libraries/cyrus-sasl/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/libraries/cyrus-sasl/default.nix b/pkgs/development/libraries/cyrus-sasl/default.nix
index b1a6401284a..6e97c61a6a5 100644
--- a/pkgs/development/libraries/cyrus-sasl/default.nix
+++ b/pkgs/development/libraries/cyrus-sasl/default.nix
@@ -1,4 +1,4 @@
-{ lib, stdenv, fetchurl, openssl, openldap, kerberos, db, gettext
+{ lib, stdenv, fetchurl, openssl, openldap, libkrb5, db, gettext
 , pam, fixDarwinDylibNames, autoreconfHook, enableLdap ? false
 , buildPackages, pruneLibtoolFiles, fetchpatch }:
 
@@ -22,7 +22,7 @@ stdenv.mkDerivation rec {
   nativeBuildInputs = [ autoreconfHook pruneLibtoolFiles ]
     ++ lib.optional stdenv.hostPlatform.isDarwin fixDarwinDylibNames;
   buildInputs =
-    [ openssl db gettext kerberos ]
+    [ openssl db gettext libkrb5 ]
     ++ lib.optional enableLdap openldap
     ++ lib.optional stdenv.isLinux pam;