2011-08-22 18:38:04 +01:00
|
|
|
{ fetchurl, stdenv, xz, zlib, lzo, libtasn1, nettle
|
2011-10-25 18:53:44 +01:00
|
|
|
, guileBindings, guile, perl }:
|
2008-04-09 08:30:05 +01:00
|
|
|
|
|
|
|
assert guileBindings -> guile != null;
|
|
|
|
|
2007-11-11 16:31:11 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2008-04-09 08:30:05 +01:00
|
|
|
|
2011-12-01 22:43:58 +00:00
|
|
|
name = "gnutls-3.0.8";
|
2008-04-09 08:30:05 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2011-08-22 18:38:04 +01:00
|
|
|
url = "mirror://gnu/gnutls/${name}.tar.xz";
|
2011-12-01 22:43:58 +00:00
|
|
|
sha256 = "0qcp7jm8c2fyk5kdb4fgyrv9hb745mcf066vwmlb8dchx15ijkms";
|
2008-04-09 08:30:05 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
configurePhase = ''
|
2011-12-02 06:21:27 +00:00
|
|
|
./configure --prefix="$out" \
|
2009-08-16 23:59:15 +01:00
|
|
|
--disable-dependency-tracking --enable-fast-install \
|
2011-08-22 18:38:04 +01:00
|
|
|
--without-p11-kit \
|
2009-11-06 22:44:23 +00:00
|
|
|
--with-lzo --with-libtasn1-prefix="${libtasn1}" \
|
2009-04-30 19:43:48 +01:00
|
|
|
${if guileBindings
|
|
|
|
then "--enable-guile --with-guile-site-dir=\"$out/share/guile/site\""
|
|
|
|
else ""}
|
2008-04-09 08:30:05 +01:00
|
|
|
'';
|
|
|
|
|
2011-10-25 18:53:44 +01:00
|
|
|
buildInputs = [ zlib lzo ]
|
2008-06-13 12:59:22 +01:00
|
|
|
++ stdenv.lib.optional guileBindings guile;
|
2008-04-09 08:30:05 +01:00
|
|
|
|
2011-10-25 18:53:44 +01:00
|
|
|
buildNativeInputs = [ xz perl ];
|
|
|
|
|
2011-08-22 18:38:29 +01:00
|
|
|
propagatedBuildInputs = [ nettle libtasn1 ];
|
2008-09-06 19:22:35 +01:00
|
|
|
|
2008-09-09 21:17:03 +01:00
|
|
|
doCheck = true;
|
2009-11-06 22:44:23 +00:00
|
|
|
|
2007-11-08 17:48:52 +00:00
|
|
|
meta = {
|
|
|
|
description = "The GNU Transport Layer Security Library";
|
2008-06-27 19:18:38 +01:00
|
|
|
|
|
|
|
longDescription = ''
|
|
|
|
GnuTLS is a project that aims to develop a library which
|
|
|
|
provides a secure layer, over a reliable transport
|
|
|
|
layer. Currently the GnuTLS library implements the proposed
|
|
|
|
standards by the IETF's TLS working group.
|
|
|
|
|
|
|
|
Quoting from the TLS protocol specification:
|
|
|
|
|
|
|
|
"The TLS protocol provides communications privacy over the
|
|
|
|
Internet. The protocol allows client/server applications to
|
|
|
|
communicate in a way that is designed to prevent eavesdropping,
|
|
|
|
tampering, or message forgery."
|
|
|
|
'';
|
|
|
|
|
2007-11-08 17:48:52 +00:00
|
|
|
homepage = http://www.gnu.org/software/gnutls/;
|
2008-04-09 08:30:05 +01:00
|
|
|
license = "LGPLv2.1+";
|
2009-08-16 23:59:15 +01:00
|
|
|
|
|
|
|
maintainers = [ stdenv.lib.maintainers.ludo ];
|
2007-11-08 17:48:52 +00:00
|
|
|
};
|
|
|
|
}
|