2021-03-14 18:50:12 +01:00
|
|
|
{ lib, stdenv, fetchurl, pkg-config, perl, bison, bootstrap_cmds
|
2018-08-20 04:17:46 +02:00
|
|
|
, openssl, openldap, libedit, keyutils
|
2015-06-27 07:04:45 +02:00
|
|
|
|
|
|
|
# Extra Arguments
|
|
|
|
, type ? ""
|
2018-07-21 04:40:20 +02:00
|
|
|
# This is called "staticOnly" because krb5 does not support
|
|
|
|
# builting both static and shared, see below.
|
|
|
|
, staticOnly ? false
|
2015-06-27 07:04:45 +02:00
|
|
|
}:
|
2009-11-06 13:57:29 +01:00
|
|
|
|
2020-06-26 22:44:45 +02: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.
|
|
|
|
|
2009-11-06 13:57:29 +01:00
|
|
|
let
|
2015-06-27 07:04:45 +02:00
|
|
|
libOnly = type == "lib";
|
2015-05-28 09:53:47 +02:00
|
|
|
in
|
2021-01-21 18:00:13 +01:00
|
|
|
with lib;
|
2015-06-27 07:04:45 +02:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "${type}krb5-${version}";
|
2020-04-01 01:45:49 +02:00
|
|
|
majorVersion = "1.18"; # remove patches below with next upgrade
|
2019-09-09 01:38:31 +02:00
|
|
|
version = majorVersion;
|
2009-11-06 13:57:29 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-02-22 08:38:03 +01:00
|
|
|
url = "https://kerberos.org/dist/krb5/${majorVersion}/krb5-${version}.tar.gz";
|
2020-02-20 04:44:25 +01:00
|
|
|
sha256 = "121c5xsy3x0i4wdkrpw62yhvji6virbh6n30ypazkp0isws3k4bk";
|
2009-11-06 13:57:29 +01:00
|
|
|
};
|
|
|
|
|
2020-04-01 01:45:49 +02:00
|
|
|
patches = optionals stdenv.hostPlatform.isMusl [
|
|
|
|
# TODO: Remove with next release > 1.18
|
|
|
|
# Patches to fix musl build with 1.18.
|
|
|
|
# Not using `fetchpatch` for these for now to avoid infinite recursion
|
|
|
|
# errors in downstream projects (unclear if it's a nixpkgs issue so far).
|
|
|
|
./krb5-Fix-Linux-build-error-with-musl-libc.patch
|
|
|
|
./krb5-Fix-typo-in-musl-build-fix.patch
|
|
|
|
];
|
|
|
|
|
2017-12-17 14:51:32 +01:00
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
|
2017-09-12 15:26:08 +02:00
|
|
|
configureFlags = [ "--with-tcl=no" "--localstatedir=/var/lib"]
|
2018-07-21 04:40:20 +02: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
|
|
|
|
++ optional staticOnly [ "--enable-static" "--disable-shared" ]
|
2017-10-17 23:05:19 +02:00
|
|
|
++ optional stdenv.isFreeBSD ''WARN_CFLAGS=""''
|
|
|
|
++ optionals (stdenv.buildPlatform != stdenv.hostPlatform)
|
|
|
|
[ "krb5_cv_attr_constructor_destructor=yes,yes"
|
|
|
|
"ac_cv_func_regcomp=yes"
|
|
|
|
"ac_cv_printf_positional=yes"
|
|
|
|
];
|
2015-11-26 18:33:58 +01:00
|
|
|
|
2021-01-19 07:50:56 +01:00
|
|
|
nativeBuildInputs = [ pkg-config perl ]
|
2021-03-14 18:50:12 +01:00
|
|
|
++ optional (!libOnly) bison
|
2015-04-06 21:21:43 +02:00
|
|
|
# Provides the mig command used by the build scripts
|
2017-12-21 09:33:06 +01:00
|
|
|
++ optional stdenv.isDarwin bootstrap_cmds;
|
2019-04-12 02:51:48 +02:00
|
|
|
|
2015-06-27 07:04:45 +02:00
|
|
|
buildInputs = [ openssl ]
|
2019-04-12 02:51:48 +02:00
|
|
|
++ optionals (stdenv.hostPlatform.isLinux && stdenv.hostPlatform.libc != "bionic" && !(stdenv.hostPlatform.useLLVM or false)) [ keyutils ]
|
2015-06-27 07:04:45 +02:00
|
|
|
++ optionals (!libOnly) [ openldap libedit ];
|
2009-11-06 13:57:29 +01:00
|
|
|
|
2016-01-02 11:44:38 +01:00
|
|
|
preConfigure = "cd ./src";
|
2009-11-06 13:57:29 +01:00
|
|
|
|
2015-06-27 07:04:45 +02:00
|
|
|
buildPhase = optionalString libOnly ''
|
2017-12-17 14:51:32 +01:00
|
|
|
MAKE="make -j $NIX_BUILD_CORES -l $NIX_BUILD_CORES"
|
|
|
|
(cd util; $MAKE)
|
|
|
|
(cd include; $MAKE)
|
|
|
|
(cd lib; $MAKE)
|
|
|
|
(cd build-tools; $MAKE)
|
2015-06-27 07:04:45 +02:00
|
|
|
'';
|
|
|
|
|
|
|
|
installPhase = optionalString libOnly ''
|
2017-12-17 14:51:32 +01:00
|
|
|
mkdir -p "$out"/{bin,sbin,lib/pkgconfig,share/{et,man/man1}} \
|
|
|
|
"$dev"/include/{gssapi,gssrpc,kadm5,krb5}
|
|
|
|
(cd util; $MAKE install)
|
|
|
|
(cd include; $MAKE install)
|
|
|
|
(cd lib; $MAKE install)
|
|
|
|
(cd build-tools; $MAKE install)
|
|
|
|
${postInstall}
|
|
|
|
'';
|
|
|
|
|
|
|
|
# not via outputBin, due to reference from libkrb5.so
|
|
|
|
postInstall = ''
|
2018-03-01 10:20:51 +01:00
|
|
|
moveToOutput bin/krb5-config "$dev"
|
2015-06-27 07:04:45 +02:00
|
|
|
'';
|
2013-03-20 23:36:17 +01:00
|
|
|
|
2013-05-01 13:11:46 +02:00
|
|
|
enableParallelBuilding = true;
|
2018-04-25 05:20:18 +02:00
|
|
|
doCheck = false; # fails with "No suitable file for testing purposes"
|
2013-05-01 13:11:46 +02:00
|
|
|
|
2015-06-27 07:41:58 +02:00
|
|
|
meta = {
|
2013-03-20 23:36:17 +01:00
|
|
|
description = "MIT Kerberos 5";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "http://web.mit.edu/kerberos/";
|
2015-06-27 07:04:45 +02:00
|
|
|
license = licenses.mit;
|
2018-11-22 22:25:05 +01:00
|
|
|
platforms = platforms.unix ++ platforms.windows;
|
2009-11-06 13:57:29 +01:00
|
|
|
};
|
2015-03-05 01:48:20 +01:00
|
|
|
|
|
|
|
passthru.implementation = "krb5";
|
2015-06-27 07:04:45 +02:00
|
|
|
}
|