Skip to content
Snippets Groups Projects
Commit fe832033 authored by Daniel Firth's avatar Daniel Firth
Browse files

tls: init at 1.6.0

parent 4059ca68
Branches
Tags
No related merge requests found
...@@ -520,6 +520,7 @@ in [ callHackage "Cabal" "3.8.1.0" ...@@ -520,6 +520,7 @@ in [ callHackage "Cabal" "3.8.1.0"
"https://github.com/haskell-effectful/time-effectful" "https://github.com/haskell-effectful/time-effectful"
(Some "e212239b685e1ecf7ee95dd1e944cc563351907f") (Some "e212239b685e1ecf7ee95dd1e944cc563351907f")
(None Text) (None Text)
, callHackage "tls" "1.6.0"
, callHackage "typed-process" "0.2.10.1" , callHackage "typed-process" "0.2.10.1"
, callHackage "type-errors-pretty" "0.0.1.2" , callHackage "type-errors-pretty" "0.0.1.2"
, callHackage "type-errors" "0.2.0.0" , callHackage "type-errors" "0.2.0.0"
......
...@@ -665,6 +665,8 @@ final: prev: with pkgs.haskell.lib; { ...@@ -665,6 +665,8 @@ final: prev: with pkgs.haskell.lib; {
time-effectful = prev.callPackage (./pkgs/time-effectful.nix) { }; time-effectful = prev.callPackage (./pkgs/time-effectful.nix) { };
tls = prev.callPackage (./pkgs/tls.nix) { };
type-equality = prev.callPackage (./pkgs/type-equality.nix) { }; type-equality = prev.callPackage (./pkgs/type-equality.nix) { };
type-errors = prev.callPackage (./pkgs/type-errors.nix) { }; type-errors = prev.callPackage (./pkgs/type-errors.nix) { };
......
{ mkDerivation
, asn1-encoding
, asn1-types
, async
, base
, bytestring
, cereal
, cryptonite
, data-default-class
, gauge
, hourglass
, lib
, memory
, mtl
, network
, QuickCheck
, tasty
, tasty-quickcheck
, transformers
, x509
, x509-store
, x509-validation
}:
mkDerivation {
pname = "tls";
version = "1.6.0";
sha256 = "d29d20afc1c1b852a3c39b076ec853cb596ac888cf521e54144441dec689e498";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [
asn1-encoding
asn1-types
async
base
bytestring
cereal
cryptonite
data-default-class
hourglass
memory
mtl
network
transformers
x509
x509-store
x509-validation
];
testHaskellDepends = [
asn1-types
async
base
bytestring
cryptonite
data-default-class
hourglass
QuickCheck
tasty
tasty-quickcheck
x509
x509-validation
];
benchmarkHaskellDepends = [
asn1-types
async
base
bytestring
cryptonite
data-default-class
gauge
hourglass
QuickCheck
tasty-quickcheck
x509
x509-validation
];
enableLibraryProfiling = false;
enableExecutableProfiling = false;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "http://github.com/vincenthz/hs-tls";
description = "TLS/SSL protocol native implementation (Server and Client)";
license = lib.licenses.bsd3;
broken = false;
}
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment