6.10.4 and 6.12.3 are broken because they need 6.10.2-binary for bootstrapping.
This commit is contained in:
Peter Simons 2015-05-18 15:22:11 +02:00
parent 2dc73b0e88
commit 54db9d427d
3 changed files with 10 additions and 2 deletions

View File

@ -97,6 +97,12 @@ stdenv.mkDerivation rec {
[ $(./main) == "yes" ]
'';
meta.license = stdenv.lib.licenses.bsd3;
meta.platforms = ["x86_64-linux" "i686-linux"];
meta = {
homepage = "http://haskell.org/ghc";
description = "The Glasgow Haskell Compiler";
license = stdenv.lib.licenses.bsd3;
platforms = ["x86_64-linux" "i686-linux"];
broken = true; # https://github.com/NixOS/nixpkgs/issues/7810
};
}

View File

@ -25,5 +25,6 @@ stdenv.mkDerivation rec {
description = "The Glasgow Haskell Compiler";
platforms = ["x86_64-linux" "i686-linux"]; # Darwin is unsupported.
inherit (ghc.meta) license;
broken = true; # https://github.com/NixOS/nixpkgs/issues/7810
};
}

View File

@ -39,5 +39,6 @@ stdenv.mkDerivation rec {
maintainers = with stdenv.lib.maintainers; [ marcweber andres simons ];
platforms = ["x86_64-linux" "i686-linux"]; # Darwin is unsupported.
inherit (ghc.meta) license;
broken = true; # https://github.com/NixOS/nixpkgs/issues/7810
};
}