kerberos: deprecate alias

This commit is contained in:
Sandro Jäckel
2021-04-04 03:18:56 +02:00
parent 9378fdf87e
commit dcb501f993
41 changed files with 89 additions and 95 deletions
+2 -3
View File
@@ -1,5 +1,5 @@
{ lib, stdenv, fetchurl, which, autoconf, automake, flex, yacc
, kernel, glibc, perl, libtool_2, kerberos, fetchpatch }:
, kernel, glibc, perl, libtool_2, libkrb5, fetchpatch }:
with (import ./srcs.nix {
inherit fetchurl;
@@ -16,7 +16,7 @@ in stdenv.mkDerivation {
nativeBuildInputs = [ autoconf automake flex libtool_2 perl which yacc ]
++ kernel.moduleBuildDependencies;
buildInputs = [ kerberos ];
buildInputs = [ libkrb5 ];
patches = [];
@@ -60,5 +60,4 @@ in stdenv.mkDerivation {
maintainers = [ maintainers.maggesi maintainers.spacefrogg ];
broken = versionOlder kernel.version "3.18" || kernel.isHardened;
};
}