2012-02-16 06:05:41 -08:00
|
|
|
{ cabal, asn1Data, base64Bytestring, cryptoPubkeyTypes, mtl, time
|
2011-11-01 18:42:09 -07:00
|
|
|
}:
|
2011-08-07 15:51:22 -07:00
|
|
|
|
2011-08-09 16:00:20 -07:00
|
|
|
cabal.mkDerivation (self: {
|
2011-08-07 15:51:22 -07:00
|
|
|
pname = "certificate";
|
2012-04-05 09:51:59 -07:00
|
|
|
version = "1.1.1";
|
|
|
|
sha256 = "1n9sj69haqsiny1zn1lb09q86ga4ccypbdbkxsk5bzv10ygkk7d9";
|
2011-08-09 16:00:20 -07:00
|
|
|
isLibrary = true;
|
|
|
|
isExecutable = true;
|
2011-11-01 18:42:09 -07:00
|
|
|
buildDepends = [
|
2012-02-16 06:05:41 -08:00
|
|
|
asn1Data base64Bytestring cryptoPubkeyTypes mtl time
|
2011-11-01 18:42:09 -07:00
|
|
|
];
|
2011-08-07 15:51:22 -07:00
|
|
|
meta = {
|
|
|
|
homepage = "http://github.com/vincenthz/hs-certificate";
|
|
|
|
description = "Certificates and Key Reader/Writer";
|
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
2011-08-09 02:54:50 -07:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2012-03-24 03:21:28 -07:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2011-08-07 15:51:22 -07:00
|
|
|
};
|
|
|
|
})
|