summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gnu/packages/haskell.scm33
1 files changed, 33 insertions, 0 deletions
diff --git a/gnu/packages/haskell.scm b/gnu/packages/haskell.scm
index 599a50d3e30..f6536982acc 100644
--- a/gnu/packages/haskell.scm
+++ b/gnu/packages/haskell.scm
@@ -3249,6 +3249,39 @@ f} makes no constraining assumptions beyond those given by @code{f} and the
3249definition of @code{Monad}.") 3249definition of @code{Monad}.")
3250 (license bsd-3))) 3250 (license bsd-3)))
3251 3251
3252(define-public ghc-adjunctions
3253 (package
3254 (name "ghc-adjunctions")
3255 (version "4.2.2")
3256 (source
3257 (origin
3258 (method url-fetch)
3259 (uri (string-append
3260 "http://hackage.haskell.org/package/adjunctions/adjunctions-"
3261 version
3262 ".tar.gz"))
3263 (sha256
3264 (base32
3265 "00p030iypjzjib8pxz1x6mxfi59wvyrwjj11zv9bh766dgkdbwjq"))))
3266 (build-system haskell-build-system)
3267 (propagated-inputs
3268 `(("ghc-profunctors" ,ghc-profunctors)))
3269 (inputs
3270 `(("ghc-comonad" ,ghc-comonad)
3271 ("ghc-contravariant" ,ghc-contravariant)
3272 ("ghc-distributive" ,ghc-distributive)
3273 ("ghc-free" ,ghc-free)
3274 ("ghc-mtl" ,ghc-mtl)
3275 ("ghc-tagged" ,ghc-tagged)
3276 ("ghc-semigroupoids" ,ghc-semigroupoids)
3277 ("ghc-semigroups" ,ghc-semigroups)
3278 ("ghc-void" ,ghc-void)))
3279 (home-page "http://github.com/ekmett/adjunctions/")
3280 (synopsis "Adjunctions and representable functors")
3281 (description "This library provides adjunctions and representable functors
3282for Haskell.")
3283 (license bsd-3)))
3284
3252(define-public ghc-fast-logger 3285(define-public ghc-fast-logger
3253 (package 3286 (package
3254 (name "ghc-fast-logger") 3287 (name "ghc-fast-logger")