nixpkgs/pkgs/development/libraries/gnutls/default.nix
Ludovic Courtès 42f234343b GnuTLS 2.6.2.
svn path=/nixpkgs/trunk/; revision=13341
2008-11-19 18:49:53 +00:00

49 lines
1.3 KiB
Nix

{ fetchurl, stdenv, zlib, lzo, libgcrypt
, guileBindings, guile }:
assert guileBindings -> guile != null;
stdenv.mkDerivation rec {
name = "gnutls-2.6.2";
src = fetchurl {
url = "mirror://gnu/gnutls/${name}.tar.bz2";
sha256 = "1jg7mcf8z9ghyzm8ca1b19pzwaaq3cvj5grsgi2hmlfms95zic80";
};
patches = [ ./tmpdir.patch ];
configurePhase = ''
./configure --prefix="$out" --enable-guile --with-guile-site-dir="$out/share/guile/site"
'';
buildInputs = [zlib lzo]
++ stdenv.lib.optional guileBindings guile;
propagatedBuildInputs = [libgcrypt];
doCheck = true;
meta = {
description = "The GNU Transport Layer Security Library";
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."
'';
homepage = http://www.gnu.org/software/gnutls/;
license = "LGPLv2.1+";
};
}