From 4c4266dd8ce133d094c07f4a946eb5d7ff3a5b28 Mon Sep 17 00:00:00 2001 From: Julian Ospald Date: Thu, 16 Jul 2020 14:38:19 +0200 Subject: [PATCH] Add GHC-8.8.4 for FreeBSD --- ghcup-0.0.2.json | 7 +++++++ lib/GHCup/Data/GHCupDownloads.hs | 6 ++++++ 2 files changed, 13 insertions(+) diff --git a/ghcup-0.0.2.json b/ghcup-0.0.2.json index 0406013..a752471 100644 --- a/ghcup-0.0.2.json +++ b/ghcup-0.0.2.json @@ -1333,6 +1333,13 @@ } }, "A_32": { + "FreeBSD": { + "unknown_versioning": { + "dlHash": "8cebe5ccf454e82acd1ff52ca57590d1ab0f3f44a981b46257ec12158c8c447e", + "dlSubdir": "ghc-8.8.4", + "dlUri": "https://files.hasufell.de/ghc/ghc-8.8.4-x86_64-portbld-freebsd.tar.xz" + } + }, "Linux_Debian": { "unknown_versioning": { "dlHash": "43dd954910c9027694312cef0aabc7774d102d0422b7172802cfb72f7d5da3a0", diff --git a/lib/GHCup/Data/GHCupDownloads.hs b/lib/GHCup/Data/GHCupDownloads.hs index cc6a18a..88f87f0 100644 --- a/lib/GHCup/Data/GHCupDownloads.hs +++ b/lib/GHCup/Data/GHCupDownloads.hs @@ -888,6 +888,11 @@ ghc_884_64_darwin = DownloadInfo (Just [rel|ghc-8.8.4|]) "e80a789e9d8cfb41dd87f3284b75432427c4461c1731d220d04ead8733ccdb5e" +ghc_884_64_freebsd :: DownloadInfo +ghc_884_64_freebsd = DownloadInfo + [uri|https://files.hasufell.de/ghc/ghc-8.8.4-x86_64-portbld-freebsd.tar.xz|] + (Just [rel|ghc-8.8.4|]) + "8cebe5ccf454e82acd1ff52ca57590d1ab0f3f44a981b46257ec12158c8c447e" @@ -1925,6 +1930,7 @@ ghcupDownloads = M.fromList , (Linux Ubuntu, M.fromList [(Nothing, ghc_884_32_deb9)]) , (Linux Mint , M.fromList [(Nothing, ghc_884_32_deb9)]) , (Linux Debian, M.fromList [(Nothing, ghc_884_32_deb9)]) + , (FreeBSD , M.fromList [(Nothing, ghc_884_64_freebsd)]) ] ) ]