pkgs/applications/editors/emacs-23: Darwin builds require libXaw to avoid link-time errors

svn path=/nixpkgs/trunk/; revision=21858
This commit is contained in:
Peter Simons 2010-05-19 12:25:31 +00:00
parent 953469729f
commit 6d7f97bd0b

View file

@ -16,7 +16,7 @@ assert dbusSupport -> dbus != null;
assert xaw3dSupport -> Xaw3d != null;
assert gtkGUI -> pkgconfig != null && gtk != null;
assert xftSupport -> libXft != null && libpng != null; # libpng = probably a bug
assert stdenv.system == "i686-darwin" -> xawSupport; # fails to link otherwise
assert stdenv.isDarwin -> xawSupport; # fails to link otherwise
stdenv.mkDerivation rec {
name = "emacs-23.2";