about summary refs log tree commit diff
path: root/pkgs/development/compilers/ghc
diff options
context:
space:
mode:
authorLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2010-02-13 16:48:12 +0000
committerLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2010-02-13 16:48:12 +0000
commita21df5e1720e094b22f07a521aba6b6b76bf5217 (patch)
tree8d2342ab40ab7f612586d2cf58360b3908121e31 /pkgs/development/compilers/ghc
parentbc15e7b44065ccc775e2a8edd0ce24222031e6a8 (diff)
downloadnixlib-a21df5e1720e094b22f07a521aba6b6b76bf5217.tar
nixlib-a21df5e1720e094b22f07a521aba6b6b76bf5217.tar.gz
nixlib-a21df5e1720e094b22f07a521aba6b6b76bf5217.tar.bz2
nixlib-a21df5e1720e094b22f07a521aba6b6b76bf5217.tar.lz
nixlib-a21df5e1720e094b22f07a521aba6b6b76bf5217.tar.xz
nixlib-a21df5e1720e094b22f07a521aba6b6b76bf5217.tar.zst
nixlib-a21df5e1720e094b22f07a521aba6b6b76bf5217.zip
I'll try to remove the hydra evaluation errors (throws) about ghc bootstrapping.
svn path=/nixpkgs/trunk/; revision=19981
Diffstat (limited to 'pkgs/development/compilers/ghc')
-rw-r--r--pkgs/development/compilers/ghc/6.10.1-binary.nix2
-rw-r--r--pkgs/development/compilers/ghc/6.10.2-binary.nix2
-rw-r--r--pkgs/development/compilers/ghc/6.4.2-binary.nix2
3 files changed, 6 insertions, 0 deletions
diff --git a/pkgs/development/compilers/ghc/6.10.1-binary.nix b/pkgs/development/compilers/ghc/6.10.1-binary.nix
index dd6e7890e1df..89ebfb0dc135 100644
--- a/pkgs/development/compilers/ghc/6.10.1-binary.nix
+++ b/pkgs/development/compilers/ghc/6.10.1-binary.nix
@@ -1,5 +1,7 @@
 {stdenv, fetchurl, perl, libedit, ncurses, gmp}:
 
+assert stdenv.system == "i686-darwin" || stdenv.system == "x86_64-linux" || stdenv.system == "i686-linux";
+
 stdenv.mkDerivation rec {
   version = "6.10.1";
 
diff --git a/pkgs/development/compilers/ghc/6.10.2-binary.nix b/pkgs/development/compilers/ghc/6.10.2-binary.nix
index e00702b8d840..85c678ffbfba 100644
--- a/pkgs/development/compilers/ghc/6.10.2-binary.nix
+++ b/pkgs/development/compilers/ghc/6.10.2-binary.nix
@@ -1,5 +1,7 @@
 {stdenv, fetchurl, perl, libedit, ncurses, gmp}:
 
+assert stdenv.system == "i686-darwin" || stdenv.system == "x86_64-linux" || stdenv.system == "i686-linux";
+
 stdenv.mkDerivation rec {
   version = "6.10.2";
 
diff --git a/pkgs/development/compilers/ghc/6.4.2-binary.nix b/pkgs/development/compilers/ghc/6.4.2-binary.nix
index 31777244521a..b20b7369d301 100644
--- a/pkgs/development/compilers/ghc/6.4.2-binary.nix
+++ b/pkgs/development/compilers/ghc/6.4.2-binary.nix
@@ -1,5 +1,7 @@
 {stdenv, fetchurl, perl, readline, ncurses, gmp}:
 
+assert stdenv.system == "i686-darwin" || stdenv.system == "x86_64-linux" || stdenv.system == "i686-linux";
+
 stdenv.mkDerivation {
   name = if stdenv.system == "i686-darwin" then "ghc-6.6.1-binary" else "ghc-6.4.2-binary";