about summary refs log tree commit diff
path: root/pkgs/applications/misc/zathura
diff options
context:
space:
mode:
authormidchildan <git@midchildan.org>2021-05-16 02:10:11 +0900
committermidchildan <git@midchildan.org>2021-05-16 02:10:11 +0900
commitd38f9c8dee8c372313866bf05f2bd682a664d9ec (patch)
tree788208bb0e4362fcea357149ca3772809fd09734 /pkgs/applications/misc/zathura
parentb23797e2c58e87ba79ccd433548397ec5ed82ed2 (diff)
zathura: disable checkPhase on Darwin
Diffstat (limited to 'pkgs/applications/misc/zathura')
-rw-r--r--pkgs/applications/misc/zathura/core/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/applications/misc/zathura/core/default.nix b/pkgs/applications/misc/zathura/core/default.nix
index 5690dc0db104a..0b6a57492c5c2 100644
--- a/pkgs/applications/misc/zathura/core/default.nix
+++ b/pkgs/applications/misc/zathura/core/default.nix
@@ -42,7 +42,7 @@ stdenv.mkDerivation rec {
   ] ++ optional stdenv.isLinux libseccomp
     ++ optional stdenv.isDarwin gtk-mac-integration;
 
-  doCheck = true;
+  doCheck = !stdenv.isDarwin;
 
   meta = {
     homepage = "https://git.pwmt.org/pwmt/zathura";