2012-10-24 09:06:11 -07:00
|
|
|
{ cabal, asn1Data, cryptohash, cryptoPubkeyTypes, filepath, mtl
|
|
|
|
, pem, time
|
|
|
|
}:
|
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-10-26 02:04:15 -07:00
|
|
|
version = "1.3.1";
|
|
|
|
sha256 = "10qn6bpvkqxj0lnfkb6a2aqphwl9yg9qv7q10rn72myyf2l101zy";
|
2011-08-09 16:00:20 -07:00
|
|
|
isLibrary = true;
|
|
|
|
isExecutable = true;
|
2012-10-24 09:06:11 -07:00
|
|
|
buildDepends = [
|
|
|
|
asn1Data cryptohash cryptoPubkeyTypes filepath mtl pem time
|
|
|
|
];
|
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
|
|
|
};
|
|
|
|
})
|