krb5: add linux keyring support
This requires some minor hoop-hopping because it's involved in the Linux bootstrap, but it's nothing too complicated. Fixes #43289
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
{ stdenv, fetchurl, pkgconfig, perl, yacc, bootstrap_cmds
|
||||
, openssl, openldap, libedit
|
||||
, openssl, openldap, libedit, keyutils
|
||||
|
||||
# Extra Arguments
|
||||
, type ? ""
|
||||
@@ -40,6 +40,7 @@ stdenv.mkDerivation rec {
|
||||
# Provides the mig command used by the build scripts
|
||||
++ optional stdenv.isDarwin bootstrap_cmds;
|
||||
buildInputs = [ openssl ]
|
||||
++ optionals (stdenv.hostPlatform.isLinux) [ keyutils ]
|
||||
++ optionals (!libOnly) [ openldap libedit ];
|
||||
|
||||
preConfigure = "cd ./src";
|
||||
|
||||
Reference in New Issue
Block a user