ghc-6.x: mark broken because of https://github.com/NixOS/nixpkgs/issues/7810
6.10.4 and 6.12.3 are broken because they need 6.10.2-binary for bootstrapping.
This commit is contained in:
parent
2dc73b0e88
commit
54db9d427d
@ -97,6 +97,12 @@ stdenv.mkDerivation rec {
|
|||||||
[ $(./main) == "yes" ]
|
[ $(./main) == "yes" ]
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta.license = stdenv.lib.licenses.bsd3;
|
meta = {
|
||||||
meta.platforms = ["x86_64-linux" "i686-linux"];
|
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
|
||||||
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -25,5 +25,6 @@ stdenv.mkDerivation rec {
|
|||||||
description = "The Glasgow Haskell Compiler";
|
description = "The Glasgow Haskell Compiler";
|
||||||
platforms = ["x86_64-linux" "i686-linux"]; # Darwin is unsupported.
|
platforms = ["x86_64-linux" "i686-linux"]; # Darwin is unsupported.
|
||||||
inherit (ghc.meta) license;
|
inherit (ghc.meta) license;
|
||||||
|
broken = true; # https://github.com/NixOS/nixpkgs/issues/7810
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -39,5 +39,6 @@ stdenv.mkDerivation rec {
|
|||||||
maintainers = with stdenv.lib.maintainers; [ marcweber andres simons ];
|
maintainers = with stdenv.lib.maintainers; [ marcweber andres simons ];
|
||||||
platforms = ["x86_64-linux" "i686-linux"]; # Darwin is unsupported.
|
platforms = ["x86_64-linux" "i686-linux"]; # Darwin is unsupported.
|
||||||
inherit (ghc.meta) license;
|
inherit (ghc.meta) license;
|
||||||
|
broken = true; # https://github.com/NixOS/nixpkgs/issues/7810
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user