From 1cf746052248776ff2a94d58174f9ed2e792c9fa Mon Sep 17 00:00:00 2001
From: Michael Raskin <7c6f434c@mail.ru>
Date: Tue, 3 Aug 2010 10:55:32 +0000
Subject: [PATCH] Try appeasing Hydra with correct platform specification
 outside of assert

svn path=/nixpkgs/trunk/; revision=22922
---
 pkgs/development/compilers/gcl/default.nix | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/pkgs/development/compilers/gcl/default.nix b/pkgs/development/compilers/gcl/default.nix
index 2f02ee2e2e18..85da8f72bf80 100644
--- a/pkgs/development/compilers/gcl/default.nix
+++ b/pkgs/development/compilers/gcl/default.nix
@@ -8,6 +8,7 @@ let
   ]; 
 in
 
+(
 assert a.stdenv ? gcc ;
 assert a.stdenv.gcc ? gcc ;
 assert a.stdenv.gcc ? libc ;
@@ -45,13 +46,13 @@ rec {
   /* doConfigure should be removed if not needed */
   phaseNames = ["setVars" "doUnpack" "preBuild" 
     "doConfigure" "doMakeInstall"];
-      
+}) // {
   meta = {
     description = "GNU Common Lisp compiler working via GCC";
     maintainers = [
       a.lib.maintainers.raskin
     ];
     platforms = with a.lib.platforms; 
-      all;
+      linux;
   };
 }