From 13392df49ad13fdf5ac911f9f23505f9d52de7d9 Mon Sep 17 00:00:00 2001 From: Matthias Beyer Date: Mon, 3 Mar 2025 11:13:46 +0100 Subject: [PATCH] cargo-insta: Fix build I messed up by merging to fast. This fixes the build cargo-insta. Fixes: e3f8b2f1445a7f9758186b28aa1d75d8ed4fd381 ("update cargo-insta 1.40 -> 1.42.2") Signed-off-by: Matthias Beyer --- pkgs/by-name/ca/cargo-insta/package.nix | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/pkgs/by-name/ca/cargo-insta/package.nix b/pkgs/by-name/ca/cargo-insta/package.nix index 0dd1d589027b..304c42754fdf 100644 --- a/pkgs/by-name/ca/cargo-insta/package.nix +++ b/pkgs/by-name/ca/cargo-insta/package.nix @@ -16,13 +16,17 @@ rustPlatform.buildRustPackage rec { useFetchCargoVendor = true; - cargoHash = "sha256-bRxtkuNtCelcYJkWPMl8xkMuGcbGCxvdz5cCzPUk44k="; + cargoHash = "sha256-Vx26ArAcsW0NNVNZa4M5hqz/sm1gecrun/bbRWMu07Q="; checkFlags = [ - # Depends on `rustfmt` and does not matter for packaging. - "--skip=utils::test_format_rust_expression" - # Requires networking - "--skip=test_force_update_snapshots" + # Depends on `rustfmt` and does not matter for packaging. + "--skip=utils::test_format_rust_expression" + # Requires networking + "--skip=test_force_update_snapshots" + + "--skip=test_ignored_snapshots" + "--skip=workspace::test_insta_workspace_root" + "--skip=env::test_get_cargo_workspace_manifest_dir" ]; meta = with lib; {