gnu: ghc-8: Update to 8.10.
* gnu/packages/haskell.scm (ghc-8): Update to 8.10. (ghc-8.8): Rename to just ghc. (ghc-8.10): Dito.
This commit is contained in:
parent
fe56213027
commit
f9250b47d5
1 changed files with 8 additions and 8 deletions
|
@ -612,14 +612,9 @@ interactive environment for the functional language Haskell.")
|
||||||
(file-pattern ".*\\.conf\\.d$")
|
(file-pattern ".*\\.conf\\.d$")
|
||||||
(file-type 'directory))))))
|
(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.8
|
(define-public ghc-8.8
|
||||||
(package (inherit ghc-8.6)
|
(package (inherit ghc-8.6)
|
||||||
(name "ghc-next")
|
(name "ghc")
|
||||||
(version "8.8.4")
|
(version "8.8.4")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
|
@ -672,7 +667,7 @@ interactive environment for the functional language Haskell.")
|
||||||
(define-public ghc-8.10
|
(define-public ghc-8.10
|
||||||
(package
|
(package
|
||||||
(inherit ghc-8.8)
|
(inherit ghc-8.8)
|
||||||
(name "ghc-next")
|
(name "ghc")
|
||||||
(version "8.10.7")
|
(version "8.10.7")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
|
@ -723,7 +718,12 @@ interactive environment for the functional language Haskell.")
|
||||||
(file-pattern ".*\\.conf\\.d$")
|
(file-pattern ".*\\.conf\\.d$")
|
||||||
(file-type 'directory))))))
|
(file-type 'directory))))))
|
||||||
|
|
||||||
(define-public ghc-8 ghc-8.6)
|
;; 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 ghc-8)
|
||||||
|
|
||||||
|
|
Reference in a new issue