feh: fix build on darwin

Darwin doesn't support inotify, needed for autoreload
This commit is contained in:
Ryan Burns 2020-10-17 12:43:09 -07:00
parent c4679aac6f
commit 942ad9a49a

View file

@ -1,7 +1,7 @@
{ stdenv, fetchurl, makeWrapper
, xorg, imlib2, libjpeg, libpng
, curl, libexif, jpegexiforient, perlPackages
, enableAutoreload ? true }:
, enableAutoreload ? !stdenv.hostPlatform.isDarwin }:
with stdenv.lib;