mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-11 13:49:23 -05:00
gnu: Add ghc-data-default-class.
* gnu/packages/haskell.scm (ghc-data-default-class): New variable. Signed-off-by: Eric Bavier <bavier@member.fsf.org>
This commit is contained in:
parent
9297065a2b
commit
5079a0af0d
1 changed files with 19 additions and 0 deletions
|
@ -238,6 +238,25 @@ (define-public ghc
|
||||||
interactive environment for the functional language Haskell.")
|
interactive environment for the functional language Haskell.")
|
||||||
(license bsd-3)))
|
(license bsd-3)))
|
||||||
|
|
||||||
|
(define-public ghc-data-default-class
|
||||||
|
(package
|
||||||
|
(name "ghc-data-default-class")
|
||||||
|
(version "0.0.1")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (string-append
|
||||||
|
"http://hackage.haskell.org/package/data-default-class/"
|
||||||
|
"data-default-class-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32 "0ccgr3jllinchqhw3lsn73ic6axk4196if5274rr1rghls0fxj5d"))))
|
||||||
|
(build-system haskell-build-system)
|
||||||
|
(home-page "http://hackage.haskell.org/package/data-default-class")
|
||||||
|
(synopsis "Types with default values")
|
||||||
|
(description
|
||||||
|
"This package defines a class for types with default values.")
|
||||||
|
(license bsd-3)))
|
||||||
|
|
||||||
(define-public ghc-mtl
|
(define-public ghc-mtl
|
||||||
(package
|
(package
|
||||||
(name "ghc-mtl")
|
(name "ghc-mtl")
|
||||||
|
|
Loading…
Reference in a new issue