diff options
author | ashish <ashish@FreeBSD.org> | 2011-05-09 03:18:13 +0800 |
---|---|---|
committer | ashish <ashish@FreeBSD.org> | 2011-05-09 03:18:13 +0800 |
commit | 9bc83b79294928bceb276cf14311aec0d71e6a24 (patch) | |
tree | b2554eea206ca467dcb9708f7956380e6d80085c /devel | |
parent | 14dc13492b8ab261df31034259c16ad92dd9b626 (diff) | |
download | freebsd-ports-gnome-9bc83b79294928bceb276cf14311aec0d71e6a24.tar.gz freebsd-ports-gnome-9bc83b79294928bceb276cf14311aec0d71e6a24.tar.zst freebsd-ports-gnome-9bc83b79294928bceb276cf14311aec0d71e6a24.zip |
Monad classes using functional dependencies, with instances for various
monad transformers, inspired by the paper Functional Programming with
Overloading and Higher-Order Polymorphism, by Mark P Jones, in Advanced
School of Functional Programming, 1995
(http://web.cecs.pdx.edu/~mpj/pubs/springschool.html).
WWW: http://hackage.haskell.org/package/mtl
Approved by: pgj (mentor)
Obtained from: FreeBSD Haskell
Diffstat (limited to 'devel')
-rw-r--r-- | devel/hs-mtl/Makefile | 21 | ||||
-rw-r--r-- | devel/hs-mtl/distinfo | 2 | ||||
-rw-r--r-- | devel/hs-mtl/pkg-descr | 7 |
3 files changed, 30 insertions, 0 deletions
diff --git a/devel/hs-mtl/Makefile b/devel/hs-mtl/Makefile new file mode 100644 index 000000000000..33d324f151aa --- /dev/null +++ b/devel/hs-mtl/Makefile @@ -0,0 +1,21 @@ +# New ports collection makefile for: hs-mtl +# Date created: 2010-05-14 +# Whom: haskell@FreeBSD.org +# +# $FreeBSD$ +# + +PORTNAME= mtl +PORTVERSION= 2.0.1.0 +CATEGORIES= devel haskell + +MAINTAINER= haskell@FreeBSD.org +COMMENT= Monad transformer library + +LICENSE= BSD + +CABAL_SETUP= Setup.hs +USE_CABAL= transformers>=0.2 + +.include "${.CURDIR}/../../lang/ghc/bsd.cabal.mk" +.include <bsd.port.mk> diff --git a/devel/hs-mtl/distinfo b/devel/hs-mtl/distinfo new file mode 100644 index 000000000000..d6e87094303b --- /dev/null +++ b/devel/hs-mtl/distinfo @@ -0,0 +1,2 @@ +SHA256 (cabal/mtl-2.0.1.0.tar.gz) = f36be461a0952905b60e750322b20105273f28e3fd99669f8db92240fdbfd2f0 +SIZE (cabal/mtl-2.0.1.0.tar.gz) = 14124 diff --git a/devel/hs-mtl/pkg-descr b/devel/hs-mtl/pkg-descr new file mode 100644 index 000000000000..5937e88f087c --- /dev/null +++ b/devel/hs-mtl/pkg-descr @@ -0,0 +1,7 @@ +Monad classes using functional dependencies, with instances for various +monad transformers, inspired by the paper Functional Programming with +Overloading and Higher-Order Polymorphism, by Mark P Jones, in Advanced +School of Functional Programming, 1995 +(http://web.cecs.pdx.edu/~mpj/pubs/springschool.html). + +WWW: http://hackage.haskell.org/package/mtl |