2012-10-24 18:06:11 +02:00
|
|
|
{ cabal, asn1Data, cryptohash, cryptoPubkeyTypes, filepath, mtl
|
|
|
|
, pem, time
|
|
|
|
}:
|
2011-08-08 00:51:22 +02:00
|
|
|
|
2011-08-10 01:00:20 +02:00
|
|
|
cabal.mkDerivation (self: {
|
2011-08-08 00:51:22 +02:00
|
|
|
pname = "certificate";
|
2013-01-20 16:42:49 +01:00
|
|
|
version = "1.3.5";
|
|
|
|
sha256 = "17g2alyib89y2k8jjg4b6jskz0ndpr92yi8hzra7vw7ygfi5mi4j";
|
2011-08-10 01:00:20 +02:00
|
|
|
isLibrary = true;
|
|
|
|
isExecutable = true;
|
2012-10-24 18:06:11 +02:00
|
|
|
buildDepends = [
|
|
|
|
asn1Data cryptohash cryptoPubkeyTypes filepath mtl pem time
|
|
|
|
];
|
2011-08-08 00:51:22 +02:00
|
|
|
meta = {
|
|
|
|
homepage = "http://github.com/vincenthz/hs-certificate";
|
|
|
|
description = "Certificates and Key Reader/Writer";
|
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
2011-08-09 11:54:50 +02:00
|
|
|
platforms = self.ghc.meta.platforms;
|
2012-03-24 11:21:28 +01:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2011-08-08 00:51:22 +02:00
|
|
|
};
|
|
|
|
})
|