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-05-30 11:01:46 +02:00
|
|
|
version = "1.3.8";
|
|
|
|
sha256 = "1id3jfaisl04n1mjj9lbq3gyz8hyn3r9p9chzmfbra0pcj3vf1m0";
|
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;
|
2013-05-11 00:36:36 +02:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2011-08-08 00:51:22 +02:00
|
|
|
};
|
|
|
|
})
|