[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 02/43] gnu: ghc-old-locale: New package for updated GHC.
From: |
Paul van der Walt |
Subject: |
[PATCH 02/43] gnu: ghc-old-locale: New package for updated GHC. |
Date: |
Thu, 15 Oct 2015 14:20:56 +0200 |
* gnu/packages/haskell.scm (ghc-old-locale): New variable.
* gnu/packages/haskell.scm (ghc-data-default-instances-old-locale):
Update dependencies.
* gnu/packages/haskell.scm (ghc-mtl): Update to version 2.2.1.
* gnu/packages/haskell.scm (ghc-utf8-string): Update to version 1.0.1.1.
---
gnu/packages/haskell.scm | 35 ++++++++++++++++++++++++++++++-----
1 file changed, 30 insertions(+), 5 deletions(-)
diff --git a/gnu/packages/haskell.scm b/gnu/packages/haskell.scm
index ba828d8..51c7a95 100644
--- a/gnu/packages/haskell.scm
+++ b/gnu/packages/haskell.scm
@@ -362,6 +362,30 @@ package.")
package.")
(license bsd-3)))
+(define-public ghc-old-locale
+ (package
+ (name "ghc-old-locale")
+ (version "1.0.0.7")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "http://hackage.haskell.org/package/old-locale/old-locale-"
+ version
+ ".tar.gz"))
+ (sha256
+ (base32 "0l3viphiszvz5wqzg7a45zp40grwlab941q5ay29iyw8p3v8pbyv"))))
+ (build-system haskell-build-system)
+ (propagated-inputs
+ `())
+ (home-page "http://hackage.haskell.org/package/data-default") ;; TODO
+ (synopsis "Types with default values")
+ (description
+ "This package defines a class for types with a default value, and
+provides instances for types from the base, containers, dlist and old-locale
+packages.")
+ (license bsd-3)))
+
(define-public ghc-data-default-instances-old-locale
(package
(name "ghc-data-default-instances-old-locale")
@@ -377,7 +401,8 @@ package.")
(base32 "00h81i5phib741yj517p8mbnc48myvfj8axzsw44k34m48lv1lv0"))))
(build-system haskell-build-system)
(propagated-inputs
- `(("ghc-data-default-class" ,ghc-data-default-class)))
+ `(("ghc-data-default-class" ,ghc-data-default-class)
+ ("ghc-old-locale" ,ghc-old-locale)))
(home-page
"http://hackage.haskell.org/package/data-default-instances-old-locale")
(synopsis "Default instances for types in old-locale")
@@ -462,7 +487,7 @@ installation of Haskell libraries and programs.")
(define-public ghc-mtl
(package
(name "ghc-mtl")
- (version "2.1.3.1")
+ (version "2.2.1")
(outputs '("out" "doc"))
(source
(origin
@@ -473,7 +498,7 @@ installation of Haskell libraries and programs.")
".tar.gz"))
(sha256
(base32
- "1xpn2wjmqbh2cg1yssc6749xpgcqlrrg4iilwqgkcjgvaxlpdbvp"))))
+ "1icdbj2rshzn0m1zz5wa7v3xvkf6qw811p4s7jgqwvx1ydwrvrfa"))))
(build-system haskell-build-system)
(home-page "http://github.com/ekmett/mtl")
(synopsis
@@ -512,7 +537,7 @@ http://web.cecs.pdx.edu/~mpj/pubs/springschool.html.")
(define-public ghc-utf8-string
(package
(name "ghc-utf8-string")
- (version "0.3.8")
+ (version "1.0.1.1")
(source
(origin
(method url-fetch)
@@ -521,7 +546,7 @@ http://web.cecs.pdx.edu/~mpj/pubs/springschool.html.")
version
".tar.gz"))
(sha256
- (base32 "1h29dn0scsfkhmkg14ywq9178lw40ah1r36w249zfzqr02y7qxc0"))))
+ (base32 "0h7imvxkahiy8pzr8cpsimifdfvv18lizrb33k6mnq70rcx9w2zv"))))
(build-system haskell-build-system)
(home-page "http://github.com/glguy/utf8-string/")
(synopsis "Support for reading and writing UTF8 Strings")
--
2.6.1
- [PATCH 01/43] gnu: ghc: Update to 7.10.2., Paul van der Walt, 2015/10/15
- [PATCH 09/43] gnu: ghc-quickcheck: Update to 2.8.1., Paul van der Walt, 2015/10/15
- [PATCH 02/43] gnu: ghc-old-locale: New package for updated GHC.,
Paul van der Walt <=
- [PATCH 04/43] gnu: ghc-xmonad-contrib: Update to version 0.11.4., Paul van der Walt, 2015/10/15
- [PATCH 05/43] gnu: ghc-dlist: Update to 0.7.1.2., Paul van der Walt, 2015/10/15
- [PATCH 07/43] gnu: ghc-hashable: Update to 1.2.3.3., Paul van der Walt, 2015/10/15
- [PATCH 17/43] gnu: ghc-containers: Remove variable., Paul van der Walt, 2015/10/15