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