2015-06-27 06:04:45 +01:00
|
|
|
{ stdenv, fetchurl, pkgconfig, perl, yacc, bootstrap_cmds
|
2018-08-20 03:17:46 +01:00
|
|
|
, openssl, openldap, libedit, keyutils
|
2015-06-27 06:04:45 +01:00
|
|
|
|
|
|
|
# Extra Arguments
|
|
|
|
, type ? ""
|
2018-07-21 03:40:20 +01:00
|
|
|
# This is called "staticOnly" because krb5 does not support
|
|
|
|
# builting both static and shared, see below.
|
|
|
|
, staticOnly ? false
|
2015-06-27 06:04:45 +01:00
|
|
|
}:
|
2009-11-06 12:57:29 +00:00
|
|
|
|
|
|
|
let
|
2015-06-27 06:04:45 +01:00
|
|
|
libOnly = type == "lib";
|
2015-05-28 08:53:47 +01:00
|
|
|
in
|
2015-06-27 06:04:45 +01:00
|
|
|
with stdenv.lib;
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "${type}krb5-${version}";
|
2016-12-20 14:59:51 +00:00
|
|
|
majorVersion = "1.15";
|
2017-09-28 13:16:21 +01:00
|
|
|
version = "${majorVersion}.2";
|
2009-11-06 12:57:29 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2016-12-20 14:59:51 +00:00
|
|
|
url = "${meta.homepage}dist/krb5/${majorVersion}/krb5-${version}.tar.gz";
|
2017-09-28 13:16:21 +01:00
|
|
|
sha256 = "0zn8s7anb10hw3nzwjz7vg10fgmmgvwnibn2zrn3nppjxn9f6f8n";
|
2009-11-06 12:57:29 +00:00
|
|
|
};
|
|
|
|
|
2017-12-17 13:51:32 +00:00
|
|
|
outputs = [ "out" "dev" ];
|
|
|
|
|
2017-09-12 14:26:08 +01:00
|
|
|
configureFlags = [ "--with-tcl=no" "--localstatedir=/var/lib"]
|
2018-07-21 03:40:20 +01: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 22:05:19 +01: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 17:33:58 +00:00
|
|
|
|
2017-12-17 10:21:12 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig perl ]
|
|
|
|
++ optional (!libOnly) yacc
|
2015-04-06 20:21:43 +01:00
|
|
|
# Provides the mig command used by the build scripts
|
2017-12-21 08:33:06 +00:00
|
|
|
++ optional stdenv.isDarwin bootstrap_cmds;
|
2015-06-27 06:04:45 +01:00
|
|
|
buildInputs = [ openssl ]
|
2018-11-03 19:37:18 +00:00
|
|
|
++ optionals (stdenv.hostPlatform.isLinux && stdenv.hostPlatform.libc != "bionic") [ keyutils ]
|
2015-06-27 06:04:45 +01:00
|
|
|
++ optionals (!libOnly) [ openldap libedit ];
|
2009-11-06 12:57:29 +00:00
|
|
|
|
2016-01-02 10:44:38 +00:00
|
|
|
preConfigure = "cd ./src";
|
2009-11-06 12:57:29 +00:00
|
|
|
|
2015-06-27 06:04:45 +01:00
|
|
|
buildPhase = optionalString libOnly ''
|
2017-12-17 13:51:32 +00: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 06:04:45 +01:00
|
|
|
'';
|
|
|
|
|
|
|
|
installPhase = optionalString libOnly ''
|
2017-12-17 13:51:32 +00: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 09:20:51 +00:00
|
|
|
moveToOutput bin/krb5-config "$dev"
|
2015-06-27 06:04:45 +01:00
|
|
|
'';
|
2013-03-20 22:36:17 +00:00
|
|
|
|
2013-05-01 12:11:46 +01:00
|
|
|
enableParallelBuilding = true;
|
2018-04-25 04:20:18 +01:00
|
|
|
doCheck = false; # fails with "No suitable file for testing purposes"
|
2013-05-01 12:11:46 +01:00
|
|
|
|
2015-06-27 06:41:58 +01:00
|
|
|
meta = {
|
2013-03-20 22:36:17 +00:00
|
|
|
description = "MIT Kerberos 5";
|
2015-06-27 06:04:45 +01:00
|
|
|
homepage = http://web.mit.edu/kerberos/;
|
|
|
|
license = licenses.mit;
|
2018-11-22 21:25:05 +00:00
|
|
|
platforms = platforms.unix ++ platforms.windows;
|
2009-11-06 12:57:29 +00:00
|
|
|
};
|
2015-03-05 00:48:20 +00:00
|
|
|
|
|
|
|
passthru.implementation = "krb5";
|
2015-06-27 06:04:45 +01:00
|
|
|
}
|