From 10da09d3bd2eeb82f6059cbcab1b771f997992b0 Mon Sep 17 00:00:00 2001 From: Finn Behrens Date: Sun, 16 Jan 2022 15:07:19 +0100 Subject: [PATCH 1/2] skim: disable tests on aarch64-darwin --- pkgs/tools/misc/skim/default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/tools/misc/skim/default.nix b/pkgs/tools/misc/skim/default.nix index 63931914e942..6319b1747949 100644 --- a/pkgs/tools/misc/skim/default.nix +++ b/pkgs/tools/misc/skim/default.nix @@ -32,6 +32,9 @@ rustPlatform.buildRustPackage rec { chmod +x $out/bin/sk-share ''; + # https://github.com/lotabout/skim/issues/440 + doCheck = !(stdenv.isDarwin && stdenv.isAarch64); + meta = with lib; { description = "Command-line fuzzy finder written in Rust"; homepage = "https://github.com/lotabout/skim"; From 632b4089cc10df153fbafef56532006c0030a17e Mon Sep 17 00:00:00 2001 From: Finn Behrens Date: Sun, 16 Jan 2022 15:35:44 +0100 Subject: [PATCH 2/2] 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 6319b1747949..e7a39709630e 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";