[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
04/13: gnu: Switch default to GHC 9.2.
From: |
guix-commits |
Subject: |
04/13: gnu: Switch default to GHC 9.2. |
Date: |
Sat, 21 Jan 2023 06:55:19 -0500 (EST) |
lbraun pushed a commit to branch wip-haskell
in repository guix.
commit b2d33417a34806f392b5a1fc423e27561f63c5e7
Author: Lars-Dominik Braun <lars@6xq.net>
AuthorDate: Sat Dec 31 12:25:49 2022 +0100
gnu: Switch default to GHC 9.2.
* gnu/packages/haskell.scm (ghc-9.0): Rename to just “ghc”.
(ghc-9.2): Ditto.
(ghc): Use ghc-9.2.
---
gnu/packages/haskell.scm | 17 ++++++++---------
1 file changed, 8 insertions(+), 9 deletions(-)
diff --git a/gnu/packages/haskell.scm b/gnu/packages/haskell.scm
index 91610a1f2e..84071cb293 100644
--- a/gnu/packages/haskell.scm
+++ b/gnu/packages/haskell.scm
@@ -1235,19 +1235,12 @@ interactive environment for the functional language
Haskell.")
(file-pattern ".*\\.conf\\.d$")
(file-type 'directory))))))
-;; Versions newer than ghc defined below (i.e. the compiler
-;; haskell-build-system uses) should use ghc-next as their name to
-;; ensure ghc (without version specification) and ghc-* packages are
-;; always compatible. See https://issues.guix.gnu.org/issue/47335.
-
(define-public ghc-8 ghc-8.10)
-(define-public ghc ghc-8)
-
(define-public ghc-9.0
(package
(inherit ghc-8.10)
- (name "ghc-next")
+ (name "ghc")
(version "9.0.2")
(source (origin
(method url-fetch)
@@ -1285,7 +1278,7 @@ interactive environment for the functional language
Haskell.")
(let ((base ghc-8.10))
(package
(inherit base)
- (name "ghc-next")
+ (name "ghc")
(version "9.2.5")
(source (origin
(method url-fetch)
@@ -1327,6 +1320,12 @@ interactive environment for the functional language
Haskell.")
(file-pattern ".*\\.conf\\.d$")
(file-type 'directory)))))))
+;; Versions newer than ghc defined below (i.e. the compiler
+;; haskell-build-system uses) should use ghc-next as their name to
+;; ensure ghc (without version specification) and ghc-* packages are
+;; always compatible. See https://issues.guix.gnu.org/issue/47335.
+(define-public ghc ghc-9.2)
+
;; 9.4 is the last version to support the make-based build system,
;; but it boot with 9.2, only 9.0 is supported.
(define ghc-bootstrap-for-9.4 ghc-9.0)
- branch wip-haskell created (now 6eb6c08706), guix-commits, 2023/01/21
- 03/13: build: haskell-build-system: Support multiple libraries., guix-commits, 2023/01/21
- 04/13: gnu: Switch default to GHC 9.2.,
guix-commits <=
- 06/13: import: hackage: Add upstream-name property., guix-commits, 2023/01/21
- 08/13: import: hackage: Use upstream-name property., guix-commits, 2023/01/21
- 10/13: import: haskell: Add new internal library for GHC 9.2., guix-commits, 2023/01/21
- 01/13: import: hackage: Allow version at the beginning of cabal file., guix-commits, 2023/01/21
- 12/13: build: haskell-build-system: Remove unused linker flags., guix-commits, 2023/01/21
- 02/13: build: haskell-build-system: Remove trailing #t., guix-commits, 2023/01/21
- 05/13: import: stackage: Update to release 20.5., guix-commits, 2023/01/21
- 07/13: gnu: Add upstream-name property to Haskell packages., guix-commits, 2023/01/21
- 09/13: gnu: Use HACKAGE-URI for packages from Hackage., guix-commits, 2023/01/21
- 13/13: Upgrade Haskell packages., guix-commits, 2023/01/21