Merge pull request #651 from lovek323/shishi

shishi: fix compilation on darwin
This commit is contained in:
Evgeny Egorochkin 2013-06-19 19:28:59 -07:00
commit 9ae433931a

View File

@ -12,10 +12,17 @@ stdenv.mkDerivation rec {
buildInputs = [ libtasn1 libgcrypt gnutls ] ; buildInputs = [ libtasn1 libgcrypt gnutls ] ;
NIX_CFLAGS_COMPILE
= stdenv.lib.optionalString stdenv.isDarwin "-DBIND_8_COMPAT";
doCheck = true; doCheck = true;
meta = { meta = {
description = "GNU Shishi, free implementation of the Kerberos 5 network security system"; description = "GNU Shishi, free implementation of the Kerberos 5 network security system";
homepage = http://www.gnu.org/software/shishi/;
license = stdenv.lib.licenses.gpl3Plus;
maintainers = with stdenv.lib.maintainers; [ bjg lovek323 ];
platforms = stdenv.lib.platforms.all;
longDescription = longDescription =
'' GNU Shishi is an implementation of the Kerberos 5 network '' GNU Shishi is an implementation of the Kerberos 5 network
@ -28,11 +35,5 @@ stdenv.mkDerivation rec {
users to acquire and manage tickets (and more). The server users to acquire and manage tickets (and more). The server
side, a Key Distribution Center, is implemented by `shishid'. side, a Key Distribution Center, is implemented by `shishid'.
''; '';
homepage = http://www.gnu.org/software/shishi/;
license = "GPLv3+";
maintainers = [ stdenv.lib.maintainers.bjg ];
platforms = stdenv.lib.platforms.all;
}; };
} }