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:
parent
6fc7c5b401
commit
150a18f9b9
|
@ -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 ];
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue