[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
101/154: gnu: Add ghc-comonad.
From: |
Paul |
Subject: |
101/154: gnu: Add ghc-comonad. |
Date: |
Thu, 22 Oct 2015 13:52:15 +0000 |
toothbrush pushed a commit to branch wip-haskell-platform-7.10.2-a
in repository guix.
commit a2b67ecf62c2c28e2a0bccf238042a3a2a56bc67
Author: Paul van der Walt <address@hidden>
Date: Thu Oct 15 15:34:58 2015 +0200
gnu: Add ghc-comonad.
* gnu/packages/haskell.scm (ghc-comonad): New variable.
---
gnu/packages/haskell.scm | 30 ++++++++++++++++++++++++++++++
1 files changed, 30 insertions(+), 0 deletions(-)
diff --git a/gnu/packages/haskell.scm b/gnu/packages/haskell.scm
index 65a5467..08f8d78 100644
--- a/gnu/packages/haskell.scm
+++ b/gnu/packages/haskell.scm
@@ -1276,6 +1276,36 @@ similar to @code{binary}, that introduces an
@code{isolate} primitive for
parser isolation, and labeled blocks for better error messages.")
(license bsd-3)))
+(define-public ghc-comonad
+ (package
+ (name "ghc-comonad")
+ (version "4.2.7.2")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "http://hackage.haskell.org/package/comonad/comonad-"
+ version
+ ".tar.gz"))
+ (sha256
+ (base32
+ "0arvbaxgkawzdp38hh53akkahjg2aa3kj2b4ns0ni8a5ylg2cqmp"))))
+ (build-system haskell-build-system)
+ (propagated-inputs
+ `(("ghc-distributive" ,ghc-distributive)
+ ("ghc-transformers-compat" ,ghc-transformers-compat)
+ ("ghc-contravariant" ,ghc-contravariant)))
+ (arguments `(#:tests? #f)) ; FIXME: Test fails with "cannot satisfy
+ ; -package contravariant-1.3.3"
+ (inputs
+ `(("ghc-semigroups" ,ghc-semigroups)
+ ("ghc-tagged" ,ghc-tagged)
+ ("ghc-contravariant" ,ghc-contravariant)))
+ (home-page "http://github.com/ekmett/comonad/")
+ (synopsis "Comonads for Haskell")
+ (description "This library provides @code{Comonad}s for Haskell.")
+ (license bsd-3)))
+
(define-public ghc-appar
(package
(name "ghc-appar")
- 81/154: gnu: Add ghc-lifted-base., (continued)
- 81/154: gnu: Add ghc-lifted-base., Paul, 2015/10/22
- 90/154: gnu: Add ghc-tasty-golden., Paul, 2015/10/22
- 88/154: gnu: Add ghc-clock., Paul, 2015/10/22
- 89/154: gnu: Add ghc-temporary-rc., Paul, 2015/10/22
- 85/154: gnu: Add ghc-tasty., Paul, 2015/10/22
- 86/154: gnu: Add ghc-tasty-hunit., Paul, 2015/10/22
- 96/154: gnu: Add ghc-aeson., Paul, 2015/10/22
- 91/154: gnu: Add ghc-smallcheck., Paul, 2015/10/22
- 99/154: gnu: Add ghc-cereal., Paul, 2015/10/22
- 95/154: gnu: Add ghc-attoparsec., Paul, 2015/10/22
- 101/154: gnu: Add ghc-comonad.,
Paul <=
- 94/154: gnu: Add ghc-scientific., Paul, 2015/10/22
- 97/154: gnu: Add ghc-css-text., Paul, 2015/10/22
- 87/154: gnu: Add ghc-tasty-quickcheck., Paul, 2015/10/22
- 92/154: gnu: Add ghc-tasty-smallcheck., Paul, 2015/10/22
- 98/154: gnu: Add ghc-zip-archive., Paul, 2015/10/22
- 104/154: gnu: Add ghc-extra., Paul, 2015/10/22
- 93/154: gnu: Add ghc-tasty-ant-xml., Paul, 2015/10/22
- 102/154: gnu: Add ghc-hscolour., Paul, 2015/10/22
- 100/154: gnu: Add ghc-distributive., Paul, 2015/10/22
- 105/154: gnu: Add ghc-profunctors., Paul, 2015/10/22