2012-10-24 17:06:11 +01:00
|
|
|
{ cabal, asn1Data, cryptohash, cryptoPubkeyTypes, filepath, mtl
|
|
|
|
, pem, time
|
|
|
|
}:
|
2011-08-07 23:51:22 +01:00
|
|
|
|
2011-08-10 00:00:20 +01:00
|
|
|
cabal.mkDerivation (self: {
|
2011-08-07 23:51:22 +01:00
|
|
|
pname = "certificate";
|
2013-04-30 13:10:55 +01:00
|
|
|
version = "1.3.7";
|
|
|
|
sha256 = "06sfka5p381gayx2q7vvyr7dl8q8d4jfqdrys3k0z8fjxdbqrqya";
|
2011-08-10 00:00:20 +01:00
|
|
|
isLibrary = true;
|
|
|
|
isExecutable = true;
|
2012-10-24 17:06:11 +01:00
|
|
|
buildDepends = [
|
|
|
|
asn1Data cryptohash cryptoPubkeyTypes filepath mtl pem time
|
|
|
|
];
|
2011-08-07 23:51:22 +01:00
|
|
|
meta = {
|
|
|
|
homepage = "http://github.com/vincenthz/hs-certificate";
|
|
|
|
description = "Certificates and Key Reader/Writer";
|
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
2011-08-09 10:54:50 +01:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2013-05-10 23:36:36 +01:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2011-08-07 23:51:22 +01:00
|
|
|
};
|
|
|
|
})
|