1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01: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 = [
sqlite xapian glib gmime3 texinfo emacs guile libsoup icu
] ++ stdenv.lib.optionals withMug [ gtk3 webkitgtk ];
sqlite xapian glib gmime3 texinfo emacs libsoup icu
]
# 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 ];