2016-10-18 16:16:10 +02:00
|
|
|
{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, python2, perl, yacc, flex
|
2015-06-27 07:41:25 +02:00
|
|
|
, texinfo, perlPackages
|
|
|
|
, openldap, libcap_ng, sqlite, openssl, db, libedit, pam
|
2018-05-22 02:29:14 +02:00
|
|
|
, CoreFoundation, Security, SystemConfiguration
|
2015-06-27 07:41:25 +02:00
|
|
|
# Extra Args
|
|
|
|
, type ? ""
|
2014-12-30 09:32:41 +01:00
|
|
|
}:
|
2009-04-22 01:18:09 +02:00
|
|
|
|
2015-06-27 07:41:25 +02:00
|
|
|
let
|
|
|
|
libOnly = type == "lib";
|
|
|
|
in
|
|
|
|
with stdenv.lib;
|
2008-01-28 20:41:25 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2017-08-01 09:53:44 +02:00
|
|
|
name = "${type}heimdal-${version}";
|
2018-03-21 21:12:39 +01:00
|
|
|
version = "7.5.0";
|
2015-06-27 07:41:25 +02:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "heimdal";
|
|
|
|
repo = "heimdal";
|
2017-08-01 09:53:44 +02:00
|
|
|
rev = "heimdal-${version}";
|
2018-03-21 21:12:39 +01:00
|
|
|
sha256 = "1j38wjj4k0q8vx168k3d3k0fwa8j1q5q8f2688nnx1b9qgjd6w1d";
|
2009-04-22 01:18:09 +02:00
|
|
|
};
|
2008-01-28 20:41:25 +01:00
|
|
|
|
2018-03-21 21:12:39 +01:00
|
|
|
patches = [ ./heimdal-make-missing-headers.patch ];
|
|
|
|
|
2016-10-18 16:16:10 +02:00
|
|
|
nativeBuildInputs = [ autoreconfHook pkgconfig python2 perl yacc flex ]
|
2015-06-27 07:41:25 +02:00
|
|
|
++ (with perlPackages; [ JSON ])
|
|
|
|
++ optional (!libOnly) texinfo;
|
2018-05-22 02:29:14 +02:00
|
|
|
buildInputs = optionals (stdenv.isLinux) [ libcap_ng ]
|
|
|
|
++ [ db sqlite openssl libedit ]
|
|
|
|
++ optionals (stdenv.isDarwin) [ CoreFoundation Security SystemConfiguration ]
|
2015-06-27 07:41:25 +02:00
|
|
|
++ optionals (!libOnly) [ openldap pam ];
|
|
|
|
|
2015-06-02 11:35:28 +02:00
|
|
|
## ugly, X should be made an option
|
2010-08-06 10:52:47 +02:00
|
|
|
configureFlags = [
|
2015-06-27 07:41:25 +02:00
|
|
|
"--sysconfdir=/etc"
|
|
|
|
"--localstatedir=/var"
|
2015-06-02 11:35:28 +02:00
|
|
|
"--enable-hdb-openldap-module"
|
2016-04-16 19:47:23 +02:00
|
|
|
"--with-sqlite3=${sqlite.dev}"
|
2015-06-27 07:41:25 +02:00
|
|
|
"--with-libedit=${libedit}"
|
2016-04-16 19:44:32 +02:00
|
|
|
"--with-openssl=${openssl.dev}"
|
2015-06-02 11:35:28 +02:00
|
|
|
"--without-x"
|
2018-05-22 02:28:54 +02:00
|
|
|
"--with-berkeley-db"
|
|
|
|
"--with-berkeley-db-include=${db.dev}/include"
|
2015-06-27 07:41:25 +02:00
|
|
|
] ++ optionals (!libOnly) [
|
2016-04-16 19:41:33 +02:00
|
|
|
"--with-openldap=${openldap.dev}"
|
2018-05-22 02:29:14 +02:00
|
|
|
] ++ optionals (stdenv.isLinux) [
|
FreeBSD: apr-util, cyrus-sasl, berkeley db, glib, gnutls, kerberos, libelf-freebsd, openldap, serf, guile, tet, shishi, gawk, gnugrep
2015-11-28 01:46:00 +01:00
|
|
|
"--with-capng"
|
2010-08-06 10:52:47 +02:00
|
|
|
];
|
2014-12-30 09:32:41 +01:00
|
|
|
|
2018-03-21 21:12:39 +01:00
|
|
|
postUnpack = ''
|
|
|
|
sed -i '/^DEFAULT_INCLUDES/ s,$, -I..,' source/cf/Makefile.am.common
|
|
|
|
'';
|
|
|
|
|
2015-06-27 07:41:25 +02: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 07:45:20 +02:00
|
|
|
(cd include/hcrypto; make -j $NIX_BUILD_CORES)
|
|
|
|
(cd lib/hcrypto; make -j $NIX_BUILD_CORES)
|
2015-06-27 07:41:25 +02: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 07:45:20 +02:00
|
|
|
(cd include/hcrypto; make -j $NIX_BUILD_CORES install)
|
|
|
|
(cd lib/hcrypto; make -j $NIX_BUILD_CORES install)
|
2015-06-27 07:41:25 +02:00
|
|
|
rm -rf $out/{libexec,sbin,share}
|
|
|
|
find $out/bin -type f | grep -v 'krb5-config' | xargs rm
|
2015-06-06 09:21:21 +02:00
|
|
|
'';
|
|
|
|
|
2015-01-03 02:18:57 +01:00
|
|
|
# We need to build hcrypt for applications like samba
|
|
|
|
postBuild = ''
|
2015-06-27 07:41:25 +02:00
|
|
|
(cd include/hcrypto; make -j $NIX_BUILD_CORES)
|
|
|
|
(cd lib/hcrypto; make -j $NIX_BUILD_CORES)
|
2015-01-03 02:18:57 +01:00
|
|
|
'';
|
|
|
|
|
2010-08-06 10:52:47 +02:00
|
|
|
postInstall = ''
|
2015-01-03 02:18:57 +01:00
|
|
|
# Install hcrypto
|
2015-06-27 07:41:25 +02:00
|
|
|
(cd include/hcrypto; make -j $NIX_BUILD_CORES install)
|
|
|
|
(cd lib/hcrypto; make -j $NIX_BUILD_CORES install)
|
2015-01-03 02:18:57 +01:00
|
|
|
|
2015-06-27 07:41:25 +02:00
|
|
|
# Doesn't succeed with --libexec=$out/sbin, so
|
2013-06-06 10:48:32 +02:00
|
|
|
mv "$out/libexec/"* $out/sbin/
|
2010-08-06 10:52:47 +02:00
|
|
|
rmdir $out/libexec
|
|
|
|
'';
|
|
|
|
|
2015-09-29 10:49:33 +02: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 11:35:28 +02:00
|
|
|
|
2015-06-27 07:41:25 +02:00
|
|
|
meta = {
|
2015-07-27 00:20:36 +02:00
|
|
|
description = "An implementation of Kerberos 5 (and some more stuff)";
|
2014-12-30 09:32:41 +01:00
|
|
|
license = licenses.bsd3;
|
2018-05-22 02:29:14 +02:00
|
|
|
platforms = platforms.unix;
|
2014-12-30 09:32:41 +01:00
|
|
|
maintainers = with maintainers; [ wkennington ];
|
2014-08-08 17:58:34 +02:00
|
|
|
};
|
2015-03-05 01:48:20 +01:00
|
|
|
|
|
|
|
passthru.implementation = "heimdal";
|
2008-01-28 20:41:25 +01:00
|
|
|
}
|