forked from mirrors/nixpkgs
22 lines
632 B
Nix
22 lines
632 B
Nix
{ cabal, asn1Data, cryptohash, cryptoPubkeyTypes, filepath, mtl
|
|
, pem, time
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "certificate";
|
|
version = "1.3.1";
|
|
sha256 = "10qn6bpvkqxj0lnfkb6a2aqphwl9yg9qv7q10rn72myyf2l101zy";
|
|
isLibrary = true;
|
|
isExecutable = true;
|
|
buildDepends = [
|
|
asn1Data cryptohash cryptoPubkeyTypes filepath mtl pem time
|
|
];
|
|
meta = {
|
|
homepage = "http://github.com/vincenthz/hs-certificate";
|
|
description = "Certificates and Key Reader/Writer";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
};
|
|
})
|