From 632b4089cc10df153fbafef56532006c0030a17e Mon Sep 17 00:00:00 2001 From: Finn Behrens Date: Sun, 16 Jan 2022 15:35:44 +0100 Subject: [PATCH] skim: disable tests on aarch64-darwin --- pkgs/tools/misc/skim/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/tools/misc/skim/default.nix b/pkgs/tools/misc/skim/default.nix index 6319b174794..e7a39709630 100644 --- a/pkgs/tools/misc/skim/default.nix +++ b/pkgs/tools/misc/skim/default.nix @@ -33,7 +33,7 @@ rustPlatform.buildRustPackage rec { ''; # https://github.com/lotabout/skim/issues/440 - doCheck = !(stdenv.isDarwin && stdenv.isAarch64); + doCheck = !stdenv.isAarch64; meta = with lib; { description = "Command-line fuzzy finder written in Rust";