summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/tls/default.nix
blob: 5699991498956e1d5ad5fc853f0362ca72d77785 (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
{ cabal, cereal, certificate, cprngAes, cryptohash, cryptoPubkey
, cryptoRandom, mtl, network, QuickCheck, testFramework
, testFrameworkQuickcheck2, time
}:

cabal.mkDerivation (self: {
  pname = "tls";
  version = "1.1.4";
  sha256 = "0fq6hnc3j54kkzlvcvhskjrj740p44y65fggnj3m4kgfiwjphw5p";
  buildDepends = [
    cereal certificate cryptohash cryptoPubkey cryptoRandom mtl network
  ];
  testDepends = [
    cereal certificate cprngAes cryptoPubkey cryptoRandom mtl
    QuickCheck testFramework testFrameworkQuickcheck2 time
  ];
  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;
    maintainers = [ self.stdenv.lib.maintainers.andres ];
  };
})