From 942ad9a49ad5c7c3ce86eb05e4e9257cd40e3452 Mon Sep 17 00:00:00 2001 From: Ryan Burns Date: Sat, 17 Oct 2020 12:43:09 -0700 Subject: [PATCH] feh: fix build on darwin Darwin doesn't support inotify, needed for autoreload --- pkgs/applications/graphics/feh/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/graphics/feh/default.nix b/pkgs/applications/graphics/feh/default.nix index 82128f81353..467e593025e 100644 --- a/pkgs/applications/graphics/feh/default.nix +++ b/pkgs/applications/graphics/feh/default.nix @@ -1,7 +1,7 @@ { stdenv, fetchurl, makeWrapper , xorg, imlib2, libjpeg, libpng , curl, libexif, jpegexiforient, perlPackages -, enableAutoreload ? true }: +, enableAutoreload ? !stdenv.hostPlatform.isDarwin }: with stdenv.lib;