2015-06-27 06:41:25 +01:00
|
|
|
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, python, perl, yacc, flex
|
|
|
|
, texinfo, perlPackages
|
|
|
|
, openldap, libcap_ng, sqlite, openssl, db, libedit, pam
|
|
|
|
|
|
|
|
# Extra Args
|
|
|
|
, type ? ""
|
2014-12-30 08:32:41 +00:00
|
|
|
}:
|
2009-04-22 00:18:09 +01:00
|
|
|
|
2015-06-27 06:41:25 +01:00
|
|
|
let
|
|
|
|
libOnly = type == "lib";
|
|
|
|
in
|
|
|
|
with stdenv.lib;
|
2008-01-28 19:41:25 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2015-09-16 21:14:23 +01:00
|
|
|
name = "${type}heimdal-2015-09-13";
|
2015-06-27 06:41:25 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "heimdal";
|
|
|
|
repo = "heimdal";
|
2015-09-16 21:14:23 +01:00
|
|
|
rev = "c81572ab5dcee3062e715b9e25ca7a20f6ec456b";
|
|
|
|
sha256 = "1r60i4v6y5lpll0l2qpn0ycp6q6f1xjg7k1csi547zls8k96yk9s";
|
2009-04-22 00:18:09 +01:00
|
|
|
};
|
2008-01-28 19:41:25 +00:00
|
|
|
|
2015-06-27 06:41:25 +01:00
|
|
|
nativeBuildInputs = [ autoreconfHook pkgconfig python perl yacc flex ]
|
|
|
|
++ (with perlPackages; [ JSON ])
|
|
|
|
++ optional (!libOnly) texinfo;
|
FreeBSD: apr-util, cyrus-sasl, berkeley db, glib, gnutls, kerberos, libelf-freebsd, openldap, serf, guile, tet, shishi, gawk, gnugrep
2015-11-28 00:46:00 +00:00
|
|
|
buildInputs = (if (!stdenv.isFreeBSD) then [ libcap_ng db ] else []) ++ [ sqlite openssl libedit ]
|
2015-06-27 06:41:25 +01:00
|
|
|
++ optionals (!libOnly) [ openldap pam ];
|
|
|
|
|
2015-06-02 10:35:28 +01:00
|
|
|
## ugly, X should be made an option
|
2010-08-06 09:52:47 +01:00
|
|
|
configureFlags = [
|
2015-06-27 06:41:25 +01:00
|
|
|
"--sysconfdir=/etc"
|
|
|
|
"--localstatedir=/var"
|
2015-06-02 10:35:28 +01:00
|
|
|
"--enable-hdb-openldap-module"
|
|
|
|
"--with-sqlite3=${sqlite}"
|
2015-06-27 06:41:25 +01:00
|
|
|
"--with-libedit=${libedit}"
|
|
|
|
"--with-openssl=${openssl}"
|
2015-06-02 10:35:28 +01:00
|
|
|
"--without-x"
|
2015-06-27 06:41:25 +01:00
|
|
|
] ++ optionals (!libOnly) [
|
|
|
|
"--with-openldap=${openldap}"
|
FreeBSD: apr-util, cyrus-sasl, berkeley db, glib, gnutls, kerberos, libelf-freebsd, openldap, serf, guile, tet, shishi, gawk, gnugrep
2015-11-28 00:46:00 +00:00
|
|
|
] ++ optionals (!stdenv.isFreeBSD) [
|
2015-11-28 15:06:15 +00:00
|
|
|
"--with-berkeley-db=${db}" # XXX: this should of course work, but does not, as of nov 2015 (db==db58)
|
FreeBSD: apr-util, cyrus-sasl, berkeley db, glib, gnutls, kerberos, libelf-freebsd, openldap, serf, guile, tet, shishi, gawk, gnugrep
2015-11-28 00:46:00 +00:00
|
|
|
"--with-capng"
|
2010-08-06 09:52:47 +01:00
|
|
|
];
|
2014-12-30 08:32:41 +00:00
|
|
|
|
2015-06-27 06:41:25 +01:00
|
|
|
buildPhase = optionalString libOnly ''
|
|
|
|
(cd include; make -j $NIX_BUILD_CORES)
|
|
|
|
(cd lib; make -j $NIX_BUILD_CORES)
|
|
|
|
(cd tools; make -j $NIX_BUILD_CORES)
|
2015-06-27 06:45:20 +01:00
|
|
|
(cd include/hcrypto; make -j $NIX_BUILD_CORES)
|
|
|
|
(cd lib/hcrypto; make -j $NIX_BUILD_CORES)
|
2015-06-27 06:41:25 +01:00
|
|
|
'';
|
|
|
|
|
|
|
|
installPhase = optionalString libOnly ''
|
|
|
|
(cd include; make -j $NIX_BUILD_CORES install)
|
|
|
|
(cd lib; make -j $NIX_BUILD_CORES install)
|
|
|
|
(cd tools; make -j $NIX_BUILD_CORES install)
|
2015-06-27 06:45:20 +01:00
|
|
|
(cd include/hcrypto; make -j $NIX_BUILD_CORES install)
|
|
|
|
(cd lib/hcrypto; make -j $NIX_BUILD_CORES install)
|
2015-06-27 06:41:25 +01:00
|
|
|
rm -rf $out/{libexec,sbin,share}
|
|
|
|
find $out/bin -type f | grep -v 'krb5-config' | xargs rm
|
2015-06-06 08:21:21 +01:00
|
|
|
'';
|
|
|
|
|
2015-01-03 01:18:57 +00:00
|
|
|
# We need to build hcrypt for applications like samba
|
|
|
|
postBuild = ''
|
2015-06-27 06:41:25 +01:00
|
|
|
(cd include/hcrypto; make -j $NIX_BUILD_CORES)
|
|
|
|
(cd lib/hcrypto; make -j $NIX_BUILD_CORES)
|
2015-01-03 01:18:57 +00:00
|
|
|
'';
|
|
|
|
|
2010-08-06 09:52:47 +01:00
|
|
|
postInstall = ''
|
2015-01-03 01:18:57 +00:00
|
|
|
# Install hcrypto
|
2015-06-27 06:41:25 +01:00
|
|
|
(cd include/hcrypto; make -j $NIX_BUILD_CORES install)
|
|
|
|
(cd lib/hcrypto; make -j $NIX_BUILD_CORES install)
|
2015-01-03 01:18:57 +00:00
|
|
|
|
2015-06-27 06:41:25 +01:00
|
|
|
# Doesn't succeed with --libexec=$out/sbin, so
|
2013-06-06 09:48:32 +01:00
|
|
|
mv "$out/libexec/"* $out/sbin/
|
2010-08-06 09:52:47 +01:00
|
|
|
rmdir $out/libexec
|
|
|
|
'';
|
|
|
|
|
2015-09-29 09:49:33 +01:00
|
|
|
# Issues with hydra
|
|
|
|
# In file included from hxtool.c:34:0:
|
|
|
|
# hx_locl.h:67:25: fatal error: pkcs10_asn1.h: No such file or directory
|
|
|
|
#enableParallelBuilding = true;
|
2015-06-02 10:35:28 +01:00
|
|
|
|
2015-06-27 06:41:25 +01:00
|
|
|
meta = {
|
2015-07-26 23:20:36 +01:00
|
|
|
description = "An implementation of Kerberos 5 (and some more stuff)";
|
2014-12-30 08:32:41 +00:00
|
|
|
license = licenses.bsd3;
|
FreeBSD: apr-util, cyrus-sasl, berkeley db, glib, gnutls, kerberos, libelf-freebsd, openldap, serf, guile, tet, shishi, gawk, gnugrep
2015-11-28 00:46:00 +00:00
|
|
|
platforms = platforms.linux ++ platforms.freebsd;
|
2014-12-30 08:32:41 +00:00
|
|
|
maintainers = with maintainers; [ wkennington ];
|
2014-08-08 16:58:34 +01:00
|
|
|
};
|
2015-03-05 00:48:20 +00:00
|
|
|
|
|
|
|
passthru.implementation = "heimdal";
|
2008-01-28 19:41:25 +00:00
|
|
|
}
|