2015-06-27 07:04:45 +02:00
|
|
|
{ stdenv, fetchurl, pkgconfig, perl, yacc, bootstrap_cmds
|
|
|
|
, openssl, openldap, libedit
|
|
|
|
|
|
|
|
# Extra Arguments
|
|
|
|
, type ? ""
|
|
|
|
}:
|
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
|
2015-06-27 07:04:45 +02:00
|
|
|
with stdenv.lib;
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "${type}krb5-${version}";
|
2016-12-20 15:59:51 +01:00
|
|
|
majorVersion = "1.15";
|
2017-09-28 14:16:21 +02:00
|
|
|
version = "${majorVersion}.2";
|
2009-11-06 13:57:29 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2016-12-20 15:59:51 +01:00
|
|
|
url = "${meta.homepage}dist/krb5/${majorVersion}/krb5-${version}.tar.gz";
|
2017-09-28 14:16:21 +02:00
|
|
|
sha256 = "0zn8s7anb10hw3nzwjz7vg10fgmmgvwnibn2zrn3nppjxn9f6f8n";
|
2009-11-06 13:57:29 +01:00
|
|
|
};
|
|
|
|
|
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"]
|
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
|
|
|
|
2017-12-17 11:21:12 +01:00
|
|
|
nativeBuildInputs = [ pkgconfig perl ]
|
|
|
|
++ optional (!libOnly) yacc
|
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;
|
2015-06-27 07:04:45 +02:00
|
|
|
buildInputs = [ openssl ]
|
|
|
|
++ 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 = ''
|
|
|
|
moveToOutput bin "$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;
|
|
|
|
|
2015-06-27 07:41:58 +02:00
|
|
|
meta = {
|
2013-03-20 23:36:17 +01:00
|
|
|
description = "MIT Kerberos 5";
|
2015-06-27 07:04:45 +02:00
|
|
|
homepage = http://web.mit.edu/kerberos/;
|
|
|
|
license = licenses.mit;
|
2015-04-06 21:21:43 +02:00
|
|
|
platforms = platforms.unix;
|
2014-12-30 10:03:29 +01:00
|
|
|
maintainers = with maintainers; [ wkennington ];
|
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
|
|
|
}
|