guix_mirror_bot pushed a commit to branch haskell-team
in repository guix.

commit 2f0e4cab2aff31a656b0b4be0e9f97cc3bfd55fc
Author: Saku Laesvuori <[email protected]>
AuthorDate: Thu Jan 25 09:17:33 2024 +0200

    gnu: ghc: Update to version 9.10.2
    
    * gnu/packages/haskell.scm (ghc): Update to ghc-9.10
    
    Change-Id: I40da6cacc4d260902cd66d7d626375038fba4346
    Signed-off-by: Lars-Dominik Braun <[email protected]>
---
 gnu/packages/haskell.scm | 18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)

diff --git a/gnu/packages/haskell.scm b/gnu/packages/haskell.scm
index a02b7c2bb6..3af3f04e42 100644
--- a/gnu/packages/haskell.scm
+++ b/gnu/packages/haskell.scm
@@ -1505,12 +1505,6 @@ 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)
@@ -1574,7 +1568,7 @@ interactive environment for the functional language 
Haskell.")
   (let ((base ghc-9.2))
     (package
       (inherit base)
-      (name "ghc-next")
+      (name "ghc")
       (version "9.4.3")
       (source (origin
                 (method url-fetch)
@@ -1625,7 +1619,7 @@ interactive environment for the functional language 
Haskell.")
 (define-public ghc-9.8
   (let ((ghc-bootstrap ghc-9.4))
     (package
-      (name "ghc-next")
+      (name "ghc")
       (version "9.8.1")
       (source (origin
                 (method url-fetch)
@@ -1860,7 +1854,7 @@ interactive environment for the functional language 
Haskell.")
   (let ((base ghc-9.8))
     (package
       (inherit base)
-      (name "ghc-next")
+      (name "ghc")
       (version "9.10.2")
       (source
         (origin
@@ -1934,4 +1928,10 @@ 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.10)
+
 ;;; haskell.scm ends here

Reply via email to