[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
106/154: gnu: Add ghc-semigroupoids.
From: |
Paul |
Subject: |
106/154: gnu: Add ghc-semigroupoids. |
Date: |
Thu, 22 Oct 2015 17:23:47 +0000 |
toothbrush pushed a commit to branch wip-haskell-platform-7.10.2-a
in repository guix.
commit 24c300e05d5ecc41e3e7df1fb39b0a610527d70e
Author: Paul van der Walt <address@hidden>
Date: Thu Oct 15 15:43:24 2015 +0200
gnu: Add ghc-semigroupoids.
* gnu/packages/haskell.scm (ghc-semigroupoids): New variable.
---
gnu/packages/haskell.scm | 38 ++++++++++++++++++++++++++++++++++++++
1 files changed, 38 insertions(+), 0 deletions(-)
diff --git a/gnu/packages/haskell.scm b/gnu/packages/haskell.scm
index a499a6a..12c5a93 100644
--- a/gnu/packages/haskell.scm
+++ b/gnu/packages/haskell.scm
@@ -3038,6 +3038,44 @@ are implemented as FFI bindings to efficient code from
zlib.")
(description "This package provides bifunctors for Haskell.")
(license bsd-3)))
+(define-public ghc-semigroupoids
+ (package
+ (name "ghc-semigroupoids")
+ (version "5.0.0.4")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append
+ "http://hackage.haskell.org/package/semigroupoids/semigroupoids-"
+ version
+ ".tar.gz"))
+ (sha256
+ (base32
+ "1jf7jnfhdvl6p18wdr21yi2fim1xb8alcn6szhrdswj0dkilgq6d"))))
+ (build-system haskell-build-system)
+ (propagated-inputs
+ `(("ghc-base-orphans" ,ghc-base-orphans)
+ ("ghc-transformers-compat" ,ghc-transformers-compat)
+ ("ghc-bifunctors" ,ghc-bifunctors)
+ ("ghc-comonad" ,ghc-comonad)
+ ("ghc-contravariant" ,ghc-contravariant)
+ ("ghc-distributive" ,ghc-distributive)))
+ (arguments `(#:tests? #f)) ; FIXME: doctest packagedb propagation problem.
+ (inputs
+ `(("ghc-semigroups" ,ghc-semigroups)
+ ("ghc-tagged" ,ghc-tagged)))
+ (home-page "http://github.com/ekmett/semigroupoids")
+ (synopsis "Semigroupoids operations for Haskell")
+ (description "This library provides a wide array of (semi)groupoids and
+operations for working with them. A @code{Semigroupoid} is a @code{Category}
+without the requirement of identity arrows for every object in the category.
+A @code{Category} is any @code{Semigroupoid} for which the Yoneda lemma holds.
+Finally, to work with these weaker structures it is beneficial to have
+containers that can provide stronger guarantees about their contents, so
+versions of @code{Traversable} and @code{Foldable} that can be folded with
+just a @code{Semigroup} are added.")
+ (license bsd-3)))
+
(define-public ghc-contravariant
(package
(name "ghc-contravariant")
- 98/154: gnu: Add ghc-zip-archive., (continued)
- 98/154: gnu: Add ghc-zip-archive., Paul, 2015/10/22
- 101/154: gnu: Add ghc-comonad., Paul, 2015/10/22
- 104/154: gnu: Add ghc-extra., Paul, 2015/10/22
- 103/154: gnu: Add ghc-polyparse., Paul, 2015/10/22
- 100/154: gnu: Add ghc-distributive., Paul, 2015/10/22
- 105/154: gnu: Add ghc-profunctors., Paul, 2015/10/22
- 108/154: gnu: Add ghc-reflection., Paul, 2015/10/22
- 107/154: gnu: Add ghc-reducers., Paul, 2015/10/22
- 109/154: gnu: Add ghc-prelude-extras., Paul, 2015/10/22
- 110/154: gnu: Add ghc-free., Paul, 2015/10/22
- 106/154: gnu: Add ghc-semigroupoids.,
Paul <=
- 112/154: gnu: Add ghc-simple-reflect., Paul, 2015/10/22
- 102/154: gnu: Add HScolour., Paul, 2015/10/22
- 111/154: gnu: Add ghc-adjunctions., Paul, 2015/10/22
- 113/154: gnu: Add cpphs., Paul, 2015/10/22
- 114/154: gnu: Add ghc-cmdargs., Paul, 2015/10/22
- 117/154: gnu: Add hlint., Paul, 2015/10/22
- 115/154: gnu: Add ghc-happy., Paul, 2015/10/22
- 120/154: gnu: Add ghc-xss-sanitize., Paul, 2015/10/22
- 118/154: gnu: Add ghc-resourcet., Paul, 2015/10/22
- 119/154: gnu: Add ghc-streaming-commons., Paul, 2015/10/22