2013-09-18 10:24:41 +02:00
|
|
|
{ cabal, base64Bytestring, HUnit, mtl, QuickCheck, testFramework
|
|
|
|
, testFrameworkHunit, testFrameworkQuickcheck2
|
2013-02-24 22:09:07 +01:00
|
|
|
}:
|
2012-04-17 15:56:27 +02:00
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "pem";
|
2013-11-12 11:16:02 +01:00
|
|
|
version = "0.2.1";
|
|
|
|
sha256 = "05ln372ad89993v07q108l9al8jgjpzardpl02pziwwacdcj1j17";
|
2013-09-18 10:24:41 +02:00
|
|
|
buildDepends = [ base64Bytestring mtl ];
|
2013-02-24 22:09:07 +01:00
|
|
|
testDepends = [
|
2013-09-18 10:24:41 +02:00
|
|
|
HUnit QuickCheck testFramework testFrameworkHunit
|
|
|
|
testFrameworkQuickcheck2
|
2013-02-24 22:09:07 +01:00
|
|
|
];
|
2012-04-17 15:56:27 +02: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-11 00:36:36 +02:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2012-04-17 15:56:27 +02:00
|
|
|
};
|
|
|
|
})
|