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

32 lines
1.1 KiB
Nix
Raw Normal View History

2014-03-22 09:32:03 +00:00
{ cabal, asn1Encoding, asn1Types, byteable, cereal, cipherAes
, cipherRc4, cprngAes, cryptohash, cryptoNumbers, cryptoPubkey
2014-01-29 10:45:07 +00:00
, cryptoPubkeyTypes, cryptoRandom, dataDefaultClass, mtl, network
, QuickCheck, testFramework, testFrameworkQuickcheck2, time, x509
, x509Store, x509Validation
}:
cabal.mkDerivation (self: {
pname = "tls";
2014-05-15 15:19:02 +01:00
version = "1.2.7";
sha256 = "0f0zlyiw6bgqkhg0czlpqyz8jgb1zbgbpzpk73v5p7hsjffsblgs";
buildDepends = [
2014-03-22 09:32:03 +00:00
asn1Encoding asn1Types byteable cereal cipherAes cipherRc4
cryptohash cryptoNumbers cryptoPubkey cryptoPubkeyTypes
cryptoRandom dataDefaultClass mtl network x509 x509Store
x509Validation
];
testDepends = [
2014-01-29 10:45:07 +00:00
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 ];
};
})