From edfedf6736f8a069d5a7cc9fe65d82f088b4b7f9 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Wed, 26 Jan 2011 15:39:40 +0000 Subject: [PATCH] pkgs/misc/emulators/wine: enable Hydra builds on x86_64-linux Wine is supposed to compile on both 32 and 64-bit Linux. When I try to build it in a 64 bit environment, however, the build fails while compiling libgmp, saying that the C compiler in bootstrap-tools doesn't support C++. I'm not sure why that happens. Hopefully, the builds in Hydra give me some clue about this phenomenon. svn path=/nixpkgs/trunk/; revision=25693 --- pkgs/misc/emulators/wine/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/misc/emulators/wine/default.nix b/pkgs/misc/emulators/wine/default.nix index 6a4fdd3f0dd..51711c7c528 100644 --- a/pkgs/misc/emulators/wine/default.nix +++ b/pkgs/misc/emulators/wine/default.nix @@ -53,7 +53,7 @@ stdenv.mkDerivation rec { homepage = "http://www.winehq.org/"; license = "LGPL"; description = "An Open Source implementation of the Windows API on top of X, OpenGL, and Unix"; - maintainers = [ stdenv.lib.maintainers.raskin ]; - platforms = [ "i686-linux" ]; + maintainers = [stdenv.lib.maintainers.raskin stdenv.lib.maintainers.simons]; + platforms = stdenv.lib.platforms.linux; }; }