GnuTLS: Allow builds on non-Linux-based OSes.

svn path=/nixpkgs/trunk/; revision=33876
This commit is contained in:
Ludovic Courtès 2012-04-22 10:44:53 +00:00
parent e81f9de121
commit 72ed868803

View File

@ -29,7 +29,9 @@ stdenv.mkDerivation rec {
propagatedBuildInputs = [ nettle libtasn1 ]; propagatedBuildInputs = [ nettle libtasn1 ];
doCheck = true; # XXX: Disable tests on non-Linux because of the `mini-loss-time' hack
# below, which is Linux-specific.
doCheck = stdenv.isLinux;
postCheck = postCheck =
# Kill a process that's left behind. # Kill a process that's left behind.