2012-02-16 15:05:41 +01:00
|
|
|
{ cabal, base64Bytestring, blazeBuilder, filepath, random, text }:
|
2011-08-08 00:51:22 +02:00
|
|
|
|
2011-08-10 01:00:20 +02:00
|
|
|
cabal.mkDerivation (self: {
|
2011-08-08 00:51:22 +02:00
|
|
|
pname = "mime-mail";
|
2012-01-29 17:24:08 +01:00
|
|
|
version = "0.4.1.1";
|
|
|
|
sha256 = "01dshc6ysjkab9hl851948l6k0lwgm1fqmyk97zy7wckb252w6y4";
|
2012-02-14 18:00:37 +01:00
|
|
|
buildDepends = [
|
2012-02-16 15:05:41 +01:00
|
|
|
base64Bytestring blazeBuilder filepath random text
|
2012-02-14 18:00:37 +01:00
|
|
|
];
|
2012-08-23 17:37:40 +02:00
|
|
|
patchPhase = ''
|
|
|
|
sed -i -e 's|, base64-bytestring.*|, base64-bytestring|' mime-mail.cabal
|
|
|
|
'';
|
2011-08-08 00:51:22 +02:00
|
|
|
meta = {
|
|
|
|
homepage = "http://github.com/snoyberg/mime-mail";
|
2011-08-11 15:03:51 +02:00
|
|
|
description = "Compose MIME email messages";
|
2011-08-08 00:51:22 +02:00
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
2011-08-09 11:54:50 +02:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2012-03-24 11:21:28 +01:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2011-08-08 00:51:22 +02:00
|
|
|
};
|
|
|
|
})
|