2013-02-24 13:09:07 -08:00
|
|
|
{ cabal, doctest, hspec, mtl, parsec }:
|
2011-08-06 00:41:44 -07:00
|
|
|
|
2011-08-09 16:00:20 -07:00
|
|
|
cabal.mkDerivation (self: {
|
2011-08-06 00:41:44 -07:00
|
|
|
pname = "hsemail";
|
2013-08-30 03:31:18 -07:00
|
|
|
version = "1.7.7";
|
|
|
|
sha256 = "16wqrpzi5njv26za1rckn74jsqmyswndb6k38yz1567h1y4w7ai5";
|
2012-02-16 06:05:41 -08:00
|
|
|
buildDepends = [ mtl parsec ];
|
2013-02-24 13:09:07 -08:00
|
|
|
testDepends = [ doctest hspec parsec ];
|
2011-08-06 00:41:44 -07:00
|
|
|
meta = {
|
2013-04-05 13:43:27 -07:00
|
|
|
homepage = "http://github.com/peti/hsemail";
|
2011-08-06 00:41:44 -07:00
|
|
|
description = "Internet Message Parsers";
|
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
2011-08-09 02:54:50 -07:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2012-09-10 09:28:02 -07:00
|
|
|
maintainers = [
|
|
|
|
self.stdenv.lib.maintainers.andres
|
|
|
|
self.stdenv.lib.maintainers.simons
|
|
|
|
];
|
2011-08-06 00:41:44 -07:00
|
|
|
};
|
|
|
|
})
|