pkgs/applications/editors/emacs-{22,23}: don't restrict this build to Linux

It looks like the recent update broke the package on all platforms other than
Linux, but no-one seems to have noticed. Hydra certainly didn't. That's not
particularly satisfactory. Surely, we would like Emacs to build on Darwin, BSD,
and other platforms, too?

svn path=/nixpkgs/trunk/; revision=21773
This commit is contained in:
Peter Simons 2010-05-14 09:54:31 +00:00
parent b5feb272d7
commit 8f8b0bc3ad
2 changed files with 5 additions and 5 deletions

View File

@ -43,6 +43,6 @@ stdenv.mkDerivation rec {
homepage = http://www.gnu.org/software/emacs/;
license = "GPLv3+";
platforms = stdenv.lib.platforms.linux; # GTK & co. are needed.
platforms = stdenv.lib.platforms.all;
};
}

View File

@ -69,6 +69,6 @@ stdenv.mkDerivation rec {
license = "GPLv3+";
maintainers = [ stdenv.lib.maintainers.ludo ];
platforms = stdenv.lib.platforms.linux; # GTK & co. are needed.
platforms = stdenv.lib.platforms.all;
};
}