From 0777d26038ac8c9c2031690b6169edd88102adcd Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Thu, 8 Sep 2016 14:31:42 +0200 Subject: [PATCH] jhc: 32 bit builds are broken in "vector" http://hydra.nixos.org/build/40060997/nixlog/1/raw --- pkgs/development/compilers/jhc/default.nix | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/pkgs/development/compilers/jhc/default.nix b/pkgs/development/compilers/jhc/default.nix index 213447bb7ec..fa8a8c04b82 100644 --- a/pkgs/development/compilers/jhc/default.nix +++ b/pkgs/development/compilers/jhc/default.nix @@ -20,8 +20,7 @@ stdenv.mkDerivation rec { description = "Whole-program, globally optimizing Haskell compiler"; homepage = "http://repetae.net/computer/jhc/"; license = stdenv.lib.licenses.bsd3; - platforms = stdenv.lib.platforms.linux; - maintainers = with stdenv.lib.maintainers; - [ aforemny peti thoughtpolice ]; + platforms = ["x86_64-linux"]; # 32 bit builds are broken + maintainers = with stdenv.lib.maintainers; [ aforemny thoughtpolice ]; }; }