nixpkgs/pkgs/development/libraries/haskell/tls/1.2.6.nix
2014-03-27 13:12:51 +01:00

32 lines
1.1 KiB
Nix

{ cabal, asn1Encoding, asn1Types, byteable, cereal, cipherAes
, cipherRc4, cprngAes, cryptohash, cryptoNumbers, cryptoPubkey
, cryptoPubkeyTypes, cryptoRandom, dataDefaultClass, mtl, network
, QuickCheck, testFramework, testFrameworkQuickcheck2, time, x509
, x509Store, x509Validation
}:
cabal.mkDerivation (self: {
pname = "tls";
version = "1.2.6";
sha256 = "16r60acz9q84dv91jms9qaqvc53r98761ap9ijj3pifizzxcyswi";
buildDepends = [
asn1Encoding asn1Types byteable cereal cipherAes cipherRc4
cryptohash cryptoNumbers cryptoPubkey cryptoPubkeyTypes
cryptoRandom dataDefaultClass mtl network x509 x509Store
x509Validation
];
testDepends = [
cereal cprngAes cryptoPubkey cryptoRandom dataDefaultClass mtl
QuickCheck testFramework testFrameworkQuickcheck2 time 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;
maintainers = [ self.stdenv.lib.maintainers.andres ];
};
})