2013-02-24 21:09:07 +00:00
|
|
|
{ cabal, attoparsec, base64Bytestring, cereal, mtl, QuickCheck
|
|
|
|
, testFramework, testFrameworkQuickcheck2
|
|
|
|
}:
|
2012-04-17 14:56:27 +01:00
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "pem";
|
2012-12-06 10:55:12 +00:00
|
|
|
version = "0.1.2";
|
|
|
|
sha256 = "1p2sw36b9w6lf53jzj86ibyy9a48fjd786mx3x8mvc5lczx8v78m";
|
2012-04-17 14:56:27 +01:00
|
|
|
buildDepends = [ attoparsec base64Bytestring cereal mtl ];
|
2013-02-24 21:09:07 +00:00
|
|
|
testDepends = [
|
|
|
|
QuickCheck testFramework testFrameworkQuickcheck2
|
|
|
|
];
|
2012-04-17 14:56:27 +01:00
|
|
|
meta = {
|
|
|
|
homepage = "http://github.com/vincenthz/hs-pem";
|
|
|
|
description = "Privacy Enhanced Mail (PEM) format reader and writer";
|
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
2013-05-10 23:36:36 +01:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2012-04-17 14:56:27 +01:00
|
|
|
};
|
|
|
|
})
|