2012-02-16 14:05:41 +00:00
|
|
|
{ cabal, base64Bytestring, blazeBuilder, filepath, random, text }:
|
2011-08-07 22:51:22 +00:00
|
|
|
|
2011-08-09 23:00:20 +00:00
|
|
|
cabal.mkDerivation (self: {
|
2011-08-07 22:51:22 +00:00
|
|
|
pname = "mime-mail";
|
2012-09-10 13:08:23 +00:00
|
|
|
version = "0.4.1.2";
|
|
|
|
sha256 = "01dw9zvgxmwg0jslw14a9kjrmyjvwla8bw40w2426ifdwwxb3ywy";
|
2012-02-14 17:00:37 +00:00
|
|
|
buildDepends = [
|
2012-02-16 14:05:41 +00:00
|
|
|
base64Bytestring blazeBuilder filepath random text
|
2012-02-14 17:00:37 +00:00
|
|
|
];
|
2011-08-07 22:51:22 +00:00
|
|
|
meta = {
|
|
|
|
homepage = "http://github.com/snoyberg/mime-mail";
|
2011-08-11 13:03:51 +00:00
|
|
|
description = "Compose MIME email messages";
|
2011-08-07 22:51:22 +00:00
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
2011-08-09 09:54:50 +00:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2012-03-24 10:21:28 +00:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2011-08-07 22:51:22 +00:00
|
|
|
};
|
|
|
|
})
|