about summary refs log tree commit diff
path: root/pkgs/tools/misc/skim
diff options
context:
space:
mode:
authorFinn Behrens <me@kloenk.dev>2022-01-16 15:07:19 +0100
committerFinn Behrens <me@kloenk.dev>2022-01-16 15:07:19 +0100
commit10da09d3bd2eeb82f6059cbcab1b771f997992b0 (patch)
tree4670c28451125ab92a453f99f3d6e01dcb15fd47 /pkgs/tools/misc/skim
parent38afc892b1bc190d9fd6b8f6c672b4aee1c4483c (diff)
skim: disable tests on aarch64-darwin
Diffstat (limited to 'pkgs/tools/misc/skim')
-rw-r--r--pkgs/tools/misc/skim/default.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/pkgs/tools/misc/skim/default.nix b/pkgs/tools/misc/skim/default.nix
index 63931914e942f..6319b1747949b 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";