Skip to content

Commit

Permalink
neon, neon_0_29: make tests run, but disable
Browse files Browse the repository at this point in the history
  • Loading branch information
oxij committed Jul 17, 2018
1 parent d9c1aa4 commit 02acff8
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
5 changes: 4 additions & 1 deletion pkgs/development/libraries/neon/0.29.nix
@@ -1,4 +1,4 @@
{ stdenv, fetchurl, libxml2, pkgconfig
{ stdenv, fetchurl, libxml2, pkgconfig, perl
, compressionSupport ? true, zlib ? null
, sslSupport ? true, openssl ? null
, static ? false
Expand Down Expand Up @@ -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/;
Expand Down
5 changes: 4 additions & 1 deletion pkgs/development/libraries/neon/default.nix
@@ -1,4 +1,4 @@
{ stdenv, fetchurl, libxml2, pkgconfig
{ stdenv, fetchurl, libxml2, pkgconfig, perl
, compressionSupport ? true, zlib ? null
, sslSupport ? true, openssl ? null
, static ? false
Expand Down Expand Up @@ -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/;
Expand Down
10 changes: 2 additions & 8 deletions pkgs/top-level/all-packages.nix
Expand Up @@ -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 { };

Expand Down

0 comments on commit 02acff8

Please sign in to comment.