about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorMisty De Méo <misty@axo.dev>2024-01-29 13:36:14 -0800
committerMisty De Méo <misty@axo.dev>2024-01-29 13:36:14 -0800
commit3a44e8302f9d7df06fdfa8d610befa4126bcc10e (patch)
tree691790b385376527428510659642e9ddc880e2e0 /pkgs
parent7eb48c319fba665695f268b339cefe42e88662d3 (diff)
cargo-dist: 0.8.0 -> 0.8.2
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/tools/rust/cargo-dist/default.nix9
1 files changed, 4 insertions, 5 deletions
diff --git a/pkgs/development/tools/rust/cargo-dist/default.nix b/pkgs/development/tools/rust/cargo-dist/default.nix
index 3d6300132c3ba..5063a4baf40f7 100644
--- a/pkgs/development/tools/rust/cargo-dist/default.nix
+++ b/pkgs/development/tools/rust/cargo-dist/default.nix
@@ -14,16 +14,16 @@
 
 rustPlatform.buildRustPackage rec {
   pname = "cargo-dist";
-  version = "0.8.0";
+  version = "0.8.2";
 
   src = fetchFromGitHub {
     owner = "axodotdev";
     repo = "cargo-dist";
     rev = "v${version}";
-    hash = "sha256-AyxC1YS1VvCBIS6lKDtT2zX3bhorF4G+qg+brm4tJm8=";
+    hash = "sha256-Y4jXAZgJj0d1fUFuM94umlj/JsawWs3KxEQAucsT24s=";
   };
 
-  cargoHash = "sha256-kStLY/Hjj0DeisjXzw2BbmJalNljUP0ogBEXcoDX3FE=";
+  cargoHash = "sha256-Jza9U5vL45rvDPLb4/iELneKgy1OTCMBM1JxfuxZigQ=";
 
   nativeBuildInputs = [
     pkg-config
@@ -46,10 +46,9 @@ rustPlatform.buildRustPackage rec {
     ZSTD_SYS_USE_PKG_CONFIG = true;
   };
 
-  # remove tests that require internet access and a git repo
+  # remove tests that require internet access
   postPatch = ''
     rm cargo-dist/tests/integration-tests.rs
-    rm cargo-dist/tests/cli-tests.rs
   '';
 
   passthru.updateScript = nix-update-script { };