neon, neon_0_29: make tests run, but disable
This commit is contained in:
parent
d9c1aa465a
commit
02acff8839
|
@ -1,4 +1,4 @@
|
|||
{ stdenv, fetchurl, libxml2, pkgconfig
|
||||
{ stdenv, fetchurl, libxml2, pkgconfig, perl
|
||||
, compressionSupport ? true, zlib ? null
|
||||
, sslSupport ? true, openssl ? null
|
||||
, static ? false
|
||||
|
@ -38,6 +38,9 @@ stdenv.mkDerivation rec {
|
|||
|
||||
passthru = {inherit compressionSupport sslSupport;};
|
||||
|
||||
checkInputs = [ perl ];
|
||||
doCheck = false; # fails, needs the net
|
||||
|
||||
meta = {
|
||||
description = "An HTTP and WebDAV client library";
|
||||
homepage = http://www.webdav.org/neon/;
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{ stdenv, fetchurl, libxml2, pkgconfig
|
||||
{ stdenv, fetchurl, libxml2, pkgconfig, perl
|
||||
, compressionSupport ? true, zlib ? null
|
||||
, sslSupport ? true, openssl ? null
|
||||
, static ? false
|
||||
|
@ -38,6 +38,9 @@ stdenv.mkDerivation rec {
|
|||
|
||||
passthru = {inherit compressionSupport sslSupport;};
|
||||
|
||||
checkInputs = [ perl ];
|
||||
doCheck = false; # fails, needs the net
|
||||
|
||||
meta = {
|
||||
description = "An HTTP and WebDAV client library";
|
||||
homepage = http://www.webdav.org/neon/;
|
||||
|
|
|
@ -11068,15 +11068,9 @@ with pkgs;
|
|||
|
||||
neardal = callPackage ../development/libraries/neardal { };
|
||||
|
||||
neon = callPackage ../development/libraries/neon {
|
||||
compressionSupport = true;
|
||||
sslSupport = true;
|
||||
};
|
||||
neon = callPackage ../development/libraries/neon { };
|
||||
|
||||
neon_0_29 = callPackage ../development/libraries/neon/0.29.nix {
|
||||
compressionSupport = true;
|
||||
sslSupport = true;
|
||||
};
|
||||
neon_0_29 = callPackage ../development/libraries/neon/0.29.nix { };
|
||||
|
||||
nettle = callPackage ../development/libraries/nettle { };
|
||||
|
||||
|
|
Loading…
Reference in New Issue