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