about summary refs log tree commit diff
path: root/pkgs/applications/graphics/feh
diff options
context:
space:
mode:
authorRyan Burns <rtburns@protonmail.com>2020-10-17 12:43:09 -0700
committerRyan Burns <rtburns@protonmail.com>2020-10-17 12:44:35 -0700
commit942ad9a49ad5c7c3ce86eb05e4e9257cd40e3452 (patch)
tree0ae2d70d0f2366f9a9215a8226d152588cbd25f6 /pkgs/applications/graphics/feh
parentc4679aac6f13c39fc73a49aac0ffc8b7c1177798 (diff)
feh: fix build on darwin
Darwin doesn't support inotify, needed for autoreload
Diffstat (limited to 'pkgs/applications/graphics/feh')
-rw-r--r--pkgs/applications/graphics/feh/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/applications/graphics/feh/default.nix b/pkgs/applications/graphics/feh/default.nix
index 82128f81353fa..467e593025e4b 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;