summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/network-conduit-tls/default.nix
blob: bfb96e30480228b63517b13810ae347adb4c004a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ cabal, aeson, certificate, conduit, cprngAes, cryptoApi
, cryptoRandomApi, network, networkConduit, pem, systemFileio
, systemFilepath, tls, tlsExtra, transformers
}:

cabal.mkDerivation (self: {
  pname = "network-conduit-tls";
  version = "1.0.1.1";
  sha256 = "0v5rspcjhd2vid5i74dy1sdcvci7dlr88sgr0v9vjp4gcyb29qlj";
  buildDepends = [
    aeson certificate conduit cprngAes cryptoApi cryptoRandomApi
    network networkConduit pem systemFileio systemFilepath tls tlsExtra
    transformers
  ];
  meta = {
    homepage = "https://github.com/snoyberg/conduit";
    description = "Create TLS-aware network code with conduits";
    license = self.stdenv.lib.licenses.mit;
    platforms = self.ghc.meta.platforms;
  };
})