1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-20 12:42:24 +00:00

mu: fix on darwin

This commit is contained in:
Dmitry Kalinkin 2020-05-14 00:30:31 -04:00
parent 6fc7c5b401
commit 150a18f9b9
No known key found for this signature in database
GPG key ID: 5157B3EC8B2CA333

View file

@ -21,8 +21,11 @@ stdenv.mkDerivation rec {
''; '';
buildInputs = [ buildInputs = [
sqlite xapian glib gmime3 texinfo emacs guile libsoup icu sqlite xapian glib gmime3 texinfo emacs libsoup icu
] ++ stdenv.lib.optionals withMug [ gtk3 webkitgtk ]; ]
# Workaround for https://github.com/djcb/mu/issues/1641
++ stdenv.lib.optional (!stdenv.isDarwin) guile
++ stdenv.lib.optionals withMug [ gtk3 webkitgtk ];
nativeBuildInputs = [ pkgconfig autoreconfHook pmccabe ]; nativeBuildInputs = [ pkgconfig autoreconfHook pmccabe ];