summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/x509-store/default.nix
blob: bc1c0c47dc920baa5e3b2495c0cd6019a7078ff5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ cabal, asn1Encoding, asn1Types, cryptoPubkeyTypes, filepath, mtl
, pem, time, x509
}:

cabal.mkDerivation (self: {
  pname = "x509-store";
  version = "1.4.3";
  sha256 = "1px5r5y4vaxx479d4av333g1sc03mz1aalpvwwkbi5bwnxydvf01";
  buildDepends = [
    asn1Encoding asn1Types cryptoPubkeyTypes filepath mtl pem time x509
  ];
  meta = {
    homepage = "http://github.com/vincenthz/hs-certificate";
    description = "X.509 collection accessing and storing methods";
    license = self.stdenv.lib.licenses.bsd3;
    platforms = self.ghc.meta.platforms;
  };
})