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