From 7f71e44d8ed4ca1a5350aebe62462f38cddeee9f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andres=20L=C3=B6h?= Date: Fri, 5 Aug 2011 11:03:16 +0000 Subject: [PATCH] Fix sha256 sums for ghc-6.12.1 binaries. svn path=/nixpkgs/trunk/; revision=28165 --- pkgs/development/compilers/ghc/6.12.1-binary.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/compilers/ghc/6.12.1-binary.nix b/pkgs/development/compilers/ghc/6.12.1-binary.nix index e8ee940bef1..4cbf2d1531c 100644 --- a/pkgs/development/compilers/ghc/6.12.1-binary.nix +++ b/pkgs/development/compilers/ghc/6.12.1-binary.nix @@ -11,12 +11,12 @@ stdenv.mkDerivation rec { if stdenv.system == "i686-linux" then fetchurl { url = "http://haskell.org/ghc/dist/${version}/ghc-${version}-i386-unknown-linux-n.tar.bz2"; - sha256 = "1fw0zr2qshlpk8s0d16k27zcv5263nqdg2xds5ymw8ff6qz9rz9b"; + sha256 = "15kp8mnm4ig6a7k1a1j12lyhdcs75myv6ralfywjzpl27pd77gmk"; } else if stdenv.system == "x86_64-linux" then fetchurl { url = "http://haskell.org/ghc/dist/${version}/ghc-${version}-x86_64-unknown-linux-n.tar.bz2"; - sha256 = "bae351afe8cdb323103dcf0ed3a7b480282803d2f812aff0d27808e9df228b21"; + sha256 = "08cb4bgyj23qsbqay4pqs81jha40njkx63ng7l827cydx2pm3qxs"; } else throw "cannot bootstrap GHC on this platform";