From 7e5a8c93d6e6198e8a0731e11128db68478484d7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ludovic=20Court=C3=A8s?= Date: Mon, 9 Apr 2012 20:51:36 +0000 Subject: [PATCH] GnuTLS 3.0.18. svn path=/nixpkgs/trunk/; revision=33705 --- pkgs/development/libraries/gnutls/default.nix | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/pkgs/development/libraries/gnutls/default.nix b/pkgs/development/libraries/gnutls/default.nix index 243b4b0191d..26555b9c3c7 100644 --- a/pkgs/development/libraries/gnutls/default.nix +++ b/pkgs/development/libraries/gnutls/default.nix @@ -1,15 +1,15 @@ { fetchurl, stdenv, zlib, lzo, libtasn1, nettle -, guileBindings, guile, perl }: +, guileBindings, guile, perl, psmisc }: assert guileBindings -> guile != null; stdenv.mkDerivation rec { - name = "gnutls-3.0.11"; + name = "gnutls-3.0.18"; src = fetchurl { url = "mirror://gnu/gnutls/${name}.tar.xz"; - sha256 = "1l8k96hms7891zl43qjd7lngjh23kxdq22l6ahm1ham7fyhhrh9r"; + sha256 = "1ynqnj1j6rrzplk2i64dik34829r0y7lwk4qlvjx993q3mj7z863"; }; configurePhase = '' @@ -31,6 +31,10 @@ stdenv.mkDerivation rec { doCheck = true; + postCheck = + # Kill a process that's left behind. + stdenv.lib.optionalString doCheck "${psmisc}/bin/killall mini-loss-time"; + meta = { description = "The GNU Transport Layer Security Library";