mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 22:38:07 -05:00
gnu: Add ghc-commutative-semigroup.
* gnu/packages/haskell-xyz.scm (ghc-commutative-semigroup): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
c72ccc35ee
commit
0b2b939847
1 changed files with 19 additions and 0 deletions
|
@ -13146,6 +13146,25 @@ (define-public ghc-unordered-containers-bootstrap
|
|||
(native-inputs '())
|
||||
(properties '((hidden? #t)))))
|
||||
|
||||
(define-public ghc-commutative-semigroups
|
||||
(package
|
||||
(name "ghc-commutative-semigroups")
|
||||
(version "0.1.0.1")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (hackage-uri "commutative-semigroups" version))
|
||||
(sha256
|
||||
(base32
|
||||
"1bmafx363gfsd9wwrf3xyrw9mnw6anmc1zdfv0p8597y4lxxach7"))))
|
||||
(build-system haskell-build-system)
|
||||
(properties '((upstream-name . "commutative-semigroups")))
|
||||
(home-page "http://hackage.haskell.org/package/commutative-semigroups")
|
||||
(synopsis "Commutative semigroups")
|
||||
(description
|
||||
"This package provides a commutative semigroup is a semigroup where the order of
|
||||
arguments to mappend does not matter.")
|
||||
(license license:bsd-3)))
|
||||
|
||||
(define-public ghc-unsafe
|
||||
(package
|
||||
(name "ghc-unsafe")
|
||||
|
|
Loading…
Reference in a new issue