nixpkgs/pkgs/development/libraries/gnutls/generic.nix

60 lines
2 KiB
Nix
Raw Normal View History

2015-04-19 09:49:15 +02:00
{ fetchurl, stdenv, autoreconfHook, zlib, lzo, libtasn1, nettle, pkgconfig, lzip
, guileBindings, guile, perl, gmp, libidn, p11_kit, unbound, trousers
# Version dependent args
2015-04-19 09:49:15 +02:00
, version, src, patches ? []
, ...}:
assert guileBindings -> guile != null;
stdenv.mkDerivation rec {
name = "gnutls-${version}";
2015-04-19 09:49:15 +02:00
inherit src patches;
2015-04-19 09:49:15 +02:00
configureFlags = [
"--disable-dependency-tracking"
"--enable-fast-install"
] ++ stdenv.lib.optional guileBindings
[ "--enable-guile" "--with-guile-site-dir=\${out}/share/guile/site" ];
# Build of the Guile bindings is not parallel-safe. See
# <http://git.savannah.gnu.org/cgit/gnutls.git/commit/?id=330995a920037b6030ec0282b51dde3f8b493cad>
# for the actual fix.
enableParallelBuilding = !guileBindings;
2015-04-22 23:22:36 +02:00
buildInputs = [ lzo lzip nettle libtasn1 libidn p11_kit ]
++ stdenv.lib.optional guileBindings guile;
2015-04-22 23:22:36 +02:00
# The paths for these libraries are not specified in the .la and .pc files
propagatedBuildInputs = [ zlib gmp trousers unbound ];
2015-04-19 09:49:15 +02:00
nativeBuildInputs = [ perl pkgconfig autoreconfHook ];
# XXX: Gnulib's `test-select' fails on FreeBSD:
# http://hydra.nixos.org/build/2962084/nixlog/1/raw .
doCheck = (!stdenv.isFreeBSD && !stdenv.isDarwin);
meta = with stdenv.lib; {
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 = licenses.lgpl21Plus;
maintainers = with maintainers; [ eelco wkennington ];
platforms = platforms.all;
};
}