From 133ba5f08a33b747706e55e11900f1ebeac104a0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Domen=20Ko=C5=BEar?= Date: Sat, 7 Jan 2017 16:17:33 +0100 Subject: [PATCH] GHC: 8.0.2-rc2 -> 8.0.2 --- pkgs/development/compilers/ghc/8.0.2.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/compilers/ghc/8.0.2.nix b/pkgs/development/compilers/ghc/8.0.2.nix index b2ae92e02c6..5979eba3e10 100644 --- a/pkgs/development/compilers/ghc/8.0.2.nix +++ b/pkgs/development/compilers/ghc/8.0.2.nix @@ -13,12 +13,12 @@ let }); in stdenv.mkDerivation rec { - version = "8.0.1.20161213"; + version = "8.0.2"; name = "ghc-${version}"; src = fetchurl { - url = "https://downloads.haskell.org/~ghc/8.0.2-rc2/${name}-src.tar.xz"; - sha256 = "0l1arhbh3rbs011f0y4pgc35yn07x3hz6lfqlvqbwn96f8ff5529"; + url = "https://downloads.haskell.org/~ghc/8.0.2/${name}-src.tar.xz"; + sha256 = "1c8qc4fhkycynk4g1f9hvk53dj6a1vvqi6bklqznns6hw59m8qhi"; }; patches = [] ++ stdenv.lib.optional stdenv.isLinux ./ghc-no-madv-free.patch;