From c0944b9db06328d9fa38129797a704a794de22b1 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Wed, 23 Aug 2017 16:43:45 +0200 Subject: [PATCH] ghc-6.10.4: mark build as broken The build calls ar(1) in a way the tool doesn't like: ar q cru .libs/libffi.a src/debug.o src/prep_cif.o src/types.o src/raw_api.o src/java_raw_api.o src/closures.o src/x86/ffi64.o src/x86/unix64.o src/x86/ffi.o src/x86/sysv.o ar: creating cru ar: .libs/libffi.a: No such file or directory make[4]: *** [Makefile:717: libffi.la] Error 1 This may have become an issue after some recent binutils update; I'm not sure. --- pkgs/development/compilers/ghc/6.10.4.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/development/compilers/ghc/6.10.4.nix b/pkgs/development/compilers/ghc/6.10.4.nix index d2552b027ac..c56762edd24 100644 --- a/pkgs/development/compilers/ghc/6.10.4.nix +++ b/pkgs/development/compilers/ghc/6.10.4.nix @@ -27,5 +27,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://nix-cache.s3.amazonaws.com/log/6ys7lzckf2c0532kzhmss73mmz504can-ghc-6.10.4.drv }; }