This provides an `Either` monad transformer that unlike `ErrorT` is unencumbered by a constraint on its `Left` hand argument. ok sthen@ (will be hooked to the build during the ghc update)
26 lines
543 B
Makefile
26 lines
543 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2013/07/18 20:45:15 kili Exp $
|
|
|
|
COMMENT = an either monad transformer
|
|
|
|
DISTNAME = either-3.4.1
|
|
CATEGORIES = devel
|
|
|
|
MAINTAINER = Matthias Kilian <kili@openbsd.org>
|
|
|
|
# BSD3
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
|
|
MODULES = lang/ghc
|
|
|
|
MODGHC_BUILD = cabal hackage haddock register
|
|
|
|
RUN_DEPENDS += devel/hs-MonadRandom>=0.1,<0.2 \
|
|
devel/hs-mtl>=2.0,<2.2 \
|
|
devel/hs-semigroupoids>=3,<4 \
|
|
devel/hs-semigroups>=0.8.3.1,<1 \
|
|
devel/hs-transformers>=0.2,<0.4
|
|
|
|
BUILD_DEPENDS += ${RUN_DEPENDS}
|
|
|
|
.include <bsd.port.mk>
|