core/pkgs/by-name/ke/kerberos/krb5.nix

167 lines
3.9 KiB
Nix
Raw Normal View History

2024-06-30 08:16:52 +00:00
{
lib,
stdenv,
fetchurl,
pkg-config,
perl,
bison,
bootstrap_cmds,
openssl,
openldap,
libedit,
keyutils,
libverto,
darwin,
# for passthru.tests
# , bind
# , curl
# , nixosTests
# , openssh
# , postgresql
# , python3
# Extra Arguments
type ? "",
# This is called "staticOnly" because krb5 does not support
# builting both static and shared, see below.
staticOnly ? false,
withLdap ? false,
withVerto ? false,
2024-05-02 00:46:19 +00:00
}:
# Note: this package is used for bootstrapping fetchurl, and thus
# cannot use fetchpatch! All mutable patches (generated by GitHub or
# cgit) that are needed here should be included directly in Nixpkgs as
# files.
let
libOnly = type == "lib";
in
assert withLdap -> !libOnly;
stdenv.mkDerivation rec {
pname = "${type}krb5";
version = "1.21.2";
src = fetchurl {
url = "https://kerberos.org/dist/krb5/${lib.versions.majorMinor version}/krb5-${version}.tar.gz";
hash = "sha256-lWCUGp2EPAJDpxsXp6xv4xx867W845g9t55Srn6FBJE=";
};
2024-06-30 08:16:52 +00:00
outputs = [
"out"
"dev"
];
2024-05-02 00:46:19 +00:00
2024-06-30 08:16:52 +00:00
configureFlags =
[ "--localstatedir=/var/lib" ]
2024-05-02 00:46:19 +00:00
# krb5's ./configure does not allow passing --enable-shared and --enable-static at the same time.
# See https://bbs.archlinux.org/viewtopic.php?pid=1576737#p1576737
2024-06-30 08:16:52 +00:00
++ lib.optionals staticOnly [
"--enable-static"
"--disable-shared"
]
2024-05-02 00:46:19 +00:00
++ lib.optional withLdap "--with-ldap"
++ lib.optional withVerto "--with-system-verto"
++ lib.optional stdenv.isFreeBSD ''WARN_CFLAGS=""''
2024-06-30 08:16:52 +00:00
++ lib.optionals (stdenv.buildPlatform != stdenv.hostPlatform) [
"krb5_cv_attr_constructor_destructor=yes,yes"
"ac_cv_func_regcomp=yes"
"ac_cv_printf_positional=yes"
];
nativeBuildInputs =
[
pkg-config
perl
]
2024-05-02 00:46:19 +00:00
++ lib.optional (!libOnly) bison
# Provides the mig command used by the build scripts
++ lib.optional stdenv.isDarwin bootstrap_cmds;
2024-06-30 08:16:52 +00:00
buildInputs =
[ openssl ]
++ lib.optionals (
stdenv.hostPlatform.isLinux
&& stdenv.hostPlatform.libc != "bionic"
&& !(stdenv.hostPlatform.useLLVM or false)
) [ keyutils ]
2024-05-02 00:46:19 +00:00
++ lib.optionals (!libOnly) [ libedit ]
++ lib.optionals withLdap [ openldap ]
++ lib.optionals withVerto [ libverto ];
2024-06-30 08:16:52 +00:00
propagatedBuildInputs = lib.optionals stdenv.isDarwin (
with darwin.apple_sdk;
[
libs.xpc
frameworks.Kerberos
]
);
2024-05-02 00:46:19 +00:00
sourceRoot = "krb5-${version}/src";
postPatch = ''
substituteInPlace config/shlib.conf \
--replace "'ld " "'${stdenv.cc.targetPrefix}ld "
'';
2024-06-30 08:16:52 +00:00
libFolders = [
"util"
"include"
"lib"
"build-tools"
];
2024-05-02 00:46:19 +00:00
buildPhase = lib.optionalString libOnly ''
runHook preBuild
MAKE="make -j $NIX_BUILD_CORES"
for folder in $libFolders; do
$MAKE -C $folder
done
runHook postBuild
'';
installPhase = lib.optionalString libOnly ''
runHook preInstall
mkdir -p "$out"/{bin,sbin,lib/pkgconfig,share/{et,man/man1}} \
"$dev"/include/{gssapi,gssrpc,kadm5,krb5}
for folder in $libFolders; do
$MAKE -C $folder install
done
runHook postInstall
'';
# not via outputBin, due to reference from libkrb5.so
postInstall = ''
moveToOutput bin/krb5-config "$dev"
'';
enableParallelBuilding = true;
doCheck = false; # fails with "No suitable file for testing purposes"
meta = with lib; {
description = "MIT Kerberos 5";
homepage = "http://web.mit.edu/kerberos/";
license = licenses.mit;
platforms = platforms.unix ++ platforms.windows;
};
# passthru = {
# implementation = "krb5";
# tests = {
# inherit (nixosTests) kerberos;
# inherit (python3.pkgs) requests-credssp;
# bind = bind.override { enableGSSAPI = true; };
# curl = curl.override { gssSupport = true; };
# openssh = openssh.override { withKerberos = true; };
# # postgresql = postgresql.override { gssSupport = true; };
# };
# };
}