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.5";
|
|
sha256 = "17g2alyib89y2k8jjg4b6jskz0ndpr92yi8hzra7vw7ygfi5mi4j";
|
|
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 ];
|
|
};
|
|
})
|