From 23c13a07a942e9a9372534db9f69af8cd58bb0dd Mon Sep 17 00:00:00 2001 From: Sigmund Vestergaard Date: Thu, 11 Jun 2020 17:41:26 +0100 Subject: [PATCH] Added support for RedHat in lib/GHCup/Data/GHCupDownloads.hs --- lib/GHCup/Data/GHCupDownloads.hs | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/lib/GHCup/Data/GHCupDownloads.hs b/lib/GHCup/Data/GHCupDownloads.hs index e2d692f..052e6cd 100644 --- a/lib/GHCup/Data/GHCupDownloads.hs +++ b/lib/GHCup/Data/GHCupDownloads.hs @@ -1360,6 +1360,7 @@ ghcupDownloads = M.fromList , M.fromList [(Nothing, ghc_844_64_fedora)] ) , (Linux CentOS, M.fromList [(Nothing, ghc_844_64_centos)]) + , (Linux RedHat, M.fromList [(Nothing, ghc_844_64_centos)]) , ( Linux AmazonLinux , M.fromList [(Nothing, ghc_844_64_centos)] ) @@ -1509,6 +1510,7 @@ ghcupDownloads = M.fromList ) , (Linux Fedora, M.fromList [(Nothing, ghc_863_64_fedora)]) , (Linux CentOS, M.fromList [(Nothing, ghc_863_64_centos)]) + , (Linux RedHat, M.fromList [(Nothing, ghc_863_64_centos)]) , ( Linux AmazonLinux , M.fromList [(Nothing, ghc_863_64_centos)] ) @@ -1612,6 +1614,7 @@ ghcupDownloads = M.fromList ) , (Linux Fedora, M.fromList [(Nothing, ghc_865_64_fedora)]) , (Linux CentOS, M.fromList [(Nothing, ghc_865_64_centos)]) + , (Linux RedHat, M.fromList [(Nothing, ghc_865_64_centos)]) , ( Linux AmazonLinux , M.fromList [(Nothing, ghc_865_64_centos)] ) @@ -1665,6 +1668,7 @@ ghcupDownloads = M.fromList ) , (Linux Fedora, M.fromList [(Nothing, ghc_881_64_fedora)]) , (Linux CentOS, M.fromList [(Nothing, ghc_881_64_centos)]) + , (Linux RedHat, M.fromList [(Nothing, ghc_881_64_centos)]) , ( Linux AmazonLinux , M.fromList [(Nothing, ghc_881_64_centos)] ) @@ -1718,6 +1722,7 @@ ghcupDownloads = M.fromList ) , (Linux Fedora, M.fromList [(Nothing, ghc_882_64_fedora)]) , (Linux CentOS, M.fromList [(Nothing, ghc_882_64_centos)]) + , (Linux RedHat, M.fromList [(Nothing, ghc_882_64_centos)]) , ( Linux AmazonLinux , M.fromList [(Nothing, ghc_882_64_centos)] ) @@ -1771,6 +1776,7 @@ ghcupDownloads = M.fromList ) , (Linux Fedora, M.fromList [(Nothing, ghc_883_64_fedora)]) , (Linux CentOS, M.fromList [(Nothing, ghc_883_64_centos)]) + , (Linux RedHat, M.fromList [(Nothing, ghc_883_64_centos)]) , ( Linux AmazonLinux , M.fromList [(Nothing, ghc_883_64_centos)] ) @@ -1834,6 +1840,12 @@ ghcupDownloads = M.fromList , (Just [vers|7|], ghc_8101_64_centos) ] ) + , ( Linux RedHat + , M.fromList + [ (Nothing , ghc_8101_64_centos) + , (Just [vers|7|], ghc_8101_64_centos) + ] + ) , ( Linux AmazonLinux , M.fromList [(Nothing, ghc_8101_64_centos)] )