about summary refs log tree commit diff
path: root/pkgs/tools/networking/suckit
diff options
context:
space:
mode:
authorfigsoda <figsoda@pm.me>2022-07-29 22:26:10 +0800
committerfigsoda <figsoda@pm.me>2022-07-29 22:30:13 +0800
commit6517238ef9d55f3676a6c0673f008c6976e713bb (patch)
treeb27565a9cd9581c6858ae15066fe6b88edeec499 /pkgs/tools/networking/suckit
parenteeefaa913b07146630404645a56bc74eccc5b39e (diff)
suckit: 0.1.2 -> 0.2.0
Diffstat (limited to 'pkgs/tools/networking/suckit')
-rw-r--r--pkgs/tools/networking/suckit/default.nix11
1 files changed, 7 insertions, 4 deletions
diff --git a/pkgs/tools/networking/suckit/default.nix b/pkgs/tools/networking/suckit/default.nix
index 568e344065e4e..c6f18b26b8c41 100644
--- a/pkgs/tools/networking/suckit/default.nix
+++ b/pkgs/tools/networking/suckit/default.nix
@@ -9,23 +9,26 @@
 
 rustPlatform.buildRustPackage rec {
   pname = "suckit";
-  version = "0.1.2";
+  version = "0.2.0";
 
   src = fetchFromGitHub {
     owner = "skallwar";
     repo = pname;
     rev = "v${version}";
-    sha256 = "0wr03yvrqa9p6m127fl4hcf9057i11zld898qz4kbdyiynpi0166";
+    sha256 = "sha256-M4/vD1sVny7hAf4h56Z2xy7yuCqH/H3qHYod6haZOs0=";
   };
 
-  cargoSha256 = "sha256-6otIWAAf9pI4A8kxK3dyOVpkw+SJ3/YAvTahDSXMWNc=";
+  cargoSha256 = "sha256-JsH7TL9iITawuECm1hzs5oXFtnoUqLT4ug2CafoO2ao=";
 
   nativeBuildInputs = [ pkg-config ];
 
   buildInputs = [ openssl ] ++ lib.optional stdenv.isDarwin Security;
 
   # requires internet access
-  checkFlags = [ "--skip=test_download_url" ];
+  checkFlags = [
+    "--skip=test_download_url"
+    "--skip=test_external_download"
+  ];
 
   meta = with lib; {
     description = "Recursively visit and download a website's content to your disk";