summary refs log tree commit diff
path: root/pkgs/tools/networking/aria2
diff options
context:
space:
mode:
authorJan Malakhovski <oxij@oxij.org>2018-08-08 21:36:41 +0000
committerJan Malakhovski <oxij@oxij.org>2018-08-11 09:35:33 +0000
commitfea886b31f52c4d2e2a0d3ee9a91bad2c6dbf1da (patch)
tree90f0ebae959cce41ca425c5894b0784595fdf98d /pkgs/tools/networking/aria2
parent2a5d7d7727a03bf852ea81ce5e2bded04211dedd (diff)
downloadnixpkgs-fea886b31f52c4d2e2a0d3ee9a91bad2c6dbf1da.tar
nixpkgs-fea886b31f52c4d2e2a0d3ee9a91bad2c6dbf1da.tar.gz
nixpkgs-fea886b31f52c4d2e2a0d3ee9a91bad2c6dbf1da.tar.bz2
nixpkgs-fea886b31f52c4d2e2a0d3ee9a91bad2c6dbf1da.tar.lz
nixpkgs-fea886b31f52c4d2e2a0d3ee9a91bad2c6dbf1da.tar.xz
nixpkgs-fea886b31f52c4d2e2a0d3ee9a91bad2c6dbf1da.tar.zst
nixpkgs-fea886b31f52c4d2e2a0d3ee9a91bad2c6dbf1da.zip
aria2: make tests run, but disable
Diffstat (limited to 'pkgs/tools/networking/aria2')
-rw-r--r--pkgs/tools/networking/aria2/default.nix4
1 files changed, 4 insertions, 0 deletions
diff --git a/pkgs/tools/networking/aria2/default.nix b/pkgs/tools/networking/aria2/default.nix
index 87725f51a7f..028691229e3 100644
--- a/pkgs/tools/networking/aria2/default.nix
+++ b/pkgs/tools/networking/aria2/default.nix
@@ -1,5 +1,6 @@
 { stdenv, fetchFromGitHub, pkgconfig, autoreconfHook
 , openssl, c-ares, libxml2, sqlite, zlib, libssh2
+, cppunit
 , Security
 }:
 
@@ -21,6 +22,9 @@ stdenv.mkDerivation rec {
 
   configureFlags = [ "--with-ca-bundle=/etc/ssl/certs/ca-certificates.crt" ];
 
+  checkInputs = [ cppunit ];
+  doCheck = false; # needs the net
+
   enableParallelBuilding = true;
 
   meta = with stdenv.lib; {