summary refs log tree commit diff
path: root/pkgs/development/compilers/ghc
diff options
context:
space:
mode:
authorAndrew Childs <lorne@cons.org.nz>2020-03-18 19:10:31 +0900
committerPeter Simons <simons@cryp.to>2020-03-27 20:54:27 +0100
commit3c7ef6bcd85e3e133ac6f2ab5e238934d56d902e (patch)
tree597e334fe59f317fb471aced22c2289fb894d30c /pkgs/development/compilers/ghc
parentc4f97342ba8ac84def72328616dd05d005bb4715 (diff)
downloadnixpkgs-3c7ef6bcd85e3e133ac6f2ab5e238934d56d902e.tar
nixpkgs-3c7ef6bcd85e3e133ac6f2ab5e238934d56d902e.tar.gz
nixpkgs-3c7ef6bcd85e3e133ac6f2ab5e238934d56d902e.tar.bz2
nixpkgs-3c7ef6bcd85e3e133ac6f2ab5e238934d56d902e.tar.lz
nixpkgs-3c7ef6bcd85e3e133ac6f2ab5e238934d56d902e.tar.xz
nixpkgs-3c7ef6bcd85e3e133ac6f2ab5e238934d56d902e.tar.zst
nixpkgs-3c7ef6bcd85e3e133ac6f2ab5e238934d56d902e.zip
ghc: 8.6.3-binary -> 8.6.5-binary
Diffstat (limited to 'pkgs/development/compilers/ghc')
-rw-r--r--pkgs/development/compilers/ghc/8.6.5-binary.nix (renamed from pkgs/development/compilers/ghc/8.6.3-binary.nix)13
1 files changed, 7 insertions, 6 deletions
diff --git a/pkgs/development/compilers/ghc/8.6.3-binary.nix b/pkgs/development/compilers/ghc/8.6.5-binary.nix
index fe576186b0e..dcce7f80281 100644
--- a/pkgs/development/compilers/ghc/8.6.3-binary.nix
+++ b/pkgs/development/compilers/ghc/8.6.5-binary.nix
@@ -24,22 +24,23 @@ let
 in
 
 stdenv.mkDerivation rec {
-  version = "8.6.3";
+  version = "8.6.5";
 
   name = "ghc-${version}-binary";
 
+  # https://downloads.haskell.org/~ghc/8.6.5/
   src = fetchurl ({
     i686-linux = {
-      url = "http://haskell.org/ghc/dist/${version}/ghc-${version}-i386-deb8-linux.tar.xz";
-      sha256 = "0bw8a7fxcbskf93rb4m542ff66vrmx5i5kj77qx37cbhijx70w5m";
+      url = "http://haskell.org/ghc/dist/${version}/ghc-${version}-i386-deb9-linux.tar.xz";
+      sha256 = "1p2h29qghql19ajk755xa0yxkn85slbds8m9n5196ris743vkp8w";
     };
     x86_64-linux = {
-      url = "http://haskell.org/ghc/dist/${version}/ghc-${version}-x86_64-deb8-linux.tar.xz";
-      sha256 = "1m9gaga2pzi2cx5gvasg0rx1dlvr68gmi20l67652kag6xjsa719";
+      url = "http://haskell.org/ghc/dist/${version}/ghc-${version}-x86_64-deb9-linux.tar.xz";
+      sha256 = "1pqlx6rdjs2110g0y1i9f8x18lmdizibjqd15f5xahcz39hgaxdw";
     };
     x86_64-darwin = {
       url = "http://haskell.org/ghc/dist/${version}/ghc-${version}-x86_64-apple-darwin.tar.xz";
-      sha256 = "1hbzk57v45176kxcx848p5jn5p1xbp2129ramkbzsk6plyhnkl3r";
+      sha256 = "0s9188vhhgf23q3rjarwhbr524z6h2qga5xaaa2pma03sfqvvhfz";
     };
   }.${stdenv.hostPlatform.system}
     or (throw "cannot bootstrap GHC on this platform"));