summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/tls/default.nix
blob: d9b82d13769353343d5da3899e39b36cf6e841a3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# This file was auto-generated by cabal2nix. Please do NOT edit manually!

{ cabal, asn1Encoding, asn1Types, async, byteable, cereal
, cipherAes, cipherDes, cipherRc4, cprngAes, cryptoCipherTypes
, cryptohash, cryptoNumbers, cryptoPubkey, cryptoPubkeyTypes
, cryptoRandom, dataDefaultClass, hourglass, mtl, network
, QuickCheck, tasty, tastyQuickcheck, transformers, x509, x509Store
, x509Validation
}:

cabal.mkDerivation (self: {
  pname = "tls";
  version = "1.2.13";
  sha256 = "1djjscmyn3wcnlzz1r0clz2nxa2y23rlyjk30xjsdp0m1sq0vdc3";
  buildDepends = [
    asn1Encoding asn1Types async byteable cereal cipherAes cipherDes
    cipherRc4 cryptoCipherTypes cryptohash cryptoNumbers cryptoPubkey
    cryptoPubkeyTypes cryptoRandom dataDefaultClass mtl network
    transformers x509 x509Store x509Validation
  ];
  testDepends = [
    cereal cprngAes cryptoPubkey cryptoRandom dataDefaultClass
    hourglass mtl QuickCheck tasty tastyQuickcheck x509 x509Validation
  ];
  doCheck = false;
  meta = {
    homepage = "http://github.com/vincenthz/hs-tls";
    description = "TLS/SSL protocol native implementation (Server and Client)";
    license = self.stdenv.lib.licenses.bsd3;
    platforms = self.ghc.meta.platforms;
  };
})