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

26 lines
840 B
Nix
Raw Normal View History

{ cabal, cereal, certificate, cprngAes, cryptohash, cryptoPubkey
, cryptoRandomApi, mtl, network, QuickCheck, testFramework
, testFrameworkQuickcheck2, time
}:
cabal.mkDerivation (self: {
pname = "tls";
2013-01-30 05:29:42 -05:00
version = "1.1.2";
sha256 = "1vg1mnz6cxxgs48pbpjp4hwyvsysxyzvjfy4p1vd23lwc32cdjqg";
buildDepends = [
2013-01-16 06:42:13 -05:00
cereal certificate cryptohash cryptoPubkey cryptoRandomApi mtl
network
];
testDepends = [
cereal certificate cprngAes cryptoPubkey cryptoRandomApi mtl
QuickCheck testFramework testFrameworkQuickcheck2 time
];
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 ];
};
})