about summary refs log tree commit diff
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2010-05-19 12:25:31 +0000
committerPeter Simons <simons@cryp.to>2010-05-19 12:25:31 +0000
commit6d7f97bd0b1628ed76a40c038ae70a9d91bd2ca1 (patch)
treea6927c69de714f0b9bca3cd319c39158844ab279
parent953469729f2ce080d8151c00ca840c742cead2c9 (diff)
downloadnixlib-6d7f97bd0b1628ed76a40c038ae70a9d91bd2ca1.tar
nixlib-6d7f97bd0b1628ed76a40c038ae70a9d91bd2ca1.tar.gz
nixlib-6d7f97bd0b1628ed76a40c038ae70a9d91bd2ca1.tar.bz2
nixlib-6d7f97bd0b1628ed76a40c038ae70a9d91bd2ca1.tar.lz
nixlib-6d7f97bd0b1628ed76a40c038ae70a9d91bd2ca1.tar.xz
nixlib-6d7f97bd0b1628ed76a40c038ae70a9d91bd2ca1.tar.zst
nixlib-6d7f97bd0b1628ed76a40c038ae70a9d91bd2ca1.zip
pkgs/applications/editors/emacs-23: Darwin builds require libXaw to avoid link-time errors
svn path=/nixpkgs/trunk/; revision=21858
-rw-r--r--pkgs/applications/editors/emacs-23/default.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/applications/editors/emacs-23/default.nix b/pkgs/applications/editors/emacs-23/default.nix
index a68cd5935c5a..a0ff68a76bf4 100644
--- a/pkgs/applications/editors/emacs-23/default.nix
+++ b/pkgs/applications/editors/emacs-23/default.nix
@@ -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";