cae97e9418
- asn1-encoding: add version 0.8.1.2 - asn1-parse: add version 0.8.1 - x509-store: add version 1.4.3 - x509-system: add version 1.4.2 - x509-validation: add version 1.5.0 - x509: add version 1.4.7
21 lines
705 B
Nix
21 lines
705 B
Nix
{ cabal, asn1Encoding, asn1Types, byteable, cryptohash
|
|
, cryptoPubkey, cryptoPubkeyTypes, dataDefaultClass, filepath, mtl
|
|
, network, pem, time, x509, x509Store
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "x509-validation";
|
|
version = "1.5.0";
|
|
sha256 = "1xarn00ipi77whly5yjlpqa0xd25lj0jf4xk8ylp4ba58hvcxqrn";
|
|
buildDepends = [
|
|
asn1Encoding asn1Types byteable cryptohash cryptoPubkey
|
|
cryptoPubkeyTypes dataDefaultClass filepath mtl network pem time
|
|
x509 x509Store
|
|
];
|
|
meta = {
|
|
homepage = "http://github.com/vincenthz/hs-certificate";
|
|
description = "X.509 Certificate and CRL validation";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
};
|
|
})
|