nixpkgs/pkgs/development/libraries/haskell/tls/default.nix

33 lines
1.2 KiB
Nix
Raw Normal View History

# This file was auto-generated by cabal2nix. Please do NOT edit manually!
2014-10-21 15:13:37 +00:00
{ 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";
2014-10-21 15:13:37 +00:00
version = "1.2.13";
sha256 = "1djjscmyn3wcnlzz1r0clz2nxa2y23rlyjk30xjsdp0m1sq0vdc3";
buildDepends = [
2014-10-21 15:13:37 +00:00
asn1Encoding asn1Types async byteable cereal cipherAes cipherDes
cipherRc4 cryptoCipherTypes cryptohash cryptoNumbers cryptoPubkey
2014-10-21 15:13:37 +00:00
cryptoPubkeyTypes cryptoRandom dataDefaultClass mtl network
transformers x509 x509Store x509Validation
];
testDepends = [
2014-10-21 15:13:37 +00:00
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;
};
})