2010-04-26 08:45:23 +00:00
|
|
|
{ fetchurl, stdenv, libtasn1, libgcrypt, gnutls }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2014-03-29 18:44:30 +00:00
|
|
|
name = "shishi-1.0.2";
|
2010-04-26 08:45:23 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2010-06-17 17:06:47 +00:00
|
|
|
url = "mirror://gnu/shishi/${name}.tar.gz";
|
2014-03-29 18:44:30 +00:00
|
|
|
sha256 = "032qf72cpjdfffq1yq54gz3ahgqf2ijca4vl31sfabmjzq9q370d";
|
2010-04-26 08:45:23 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ libtasn1 libgcrypt gnutls ] ;
|
|
|
|
|
2013-05-27 11:29:11 +00:00
|
|
|
NIX_CFLAGS_COMPILE
|
|
|
|
= stdenv.lib.optionalString stdenv.isDarwin "-DBIND_8_COMPAT";
|
|
|
|
|
2010-04-26 08:45:23 +00:00
|
|
|
doCheck = true;
|
|
|
|
|
|
|
|
meta = {
|
2014-08-24 14:21:08 +00:00
|
|
|
description = "An implementation of the Kerberos 5 network security system";
|
2013-05-27 11:29:11 +00:00
|
|
|
homepage = http://www.gnu.org/software/shishi/;
|
|
|
|
license = stdenv.lib.licenses.gpl3Plus;
|
|
|
|
maintainers = with stdenv.lib.maintainers; [ bjg lovek323 ];
|
|
|
|
platforms = stdenv.lib.platforms.all;
|
2010-04-26 08:45:23 +00:00
|
|
|
|
|
|
|
longDescription =
|
2010-06-17 17:06:47 +00:00
|
|
|
'' GNU Shishi is an implementation of the Kerberos 5 network
|
2013-01-28 12:34:09 +00:00
|
|
|
authentication system, as specified in RFC 4120. Shishi can be
|
|
|
|
used to authenticate users in distributed systems.
|
|
|
|
|
|
|
|
Shishi contains a library (`libshishi') that can be used by
|
|
|
|
application developers to add support for Kerberos 5. Shishi
|
|
|
|
contains a command line utility (1shishi') that is used by
|
|
|
|
users to acquire and manage tickets (and more). The server
|
|
|
|
side, a Key Distribution Center, is implemented by `shishid'.
|
2010-06-17 17:06:47 +00:00
|
|
|
'';
|
2010-04-26 08:45:23 +00:00
|
|
|
};
|
|
|
|
}
|