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

http-client-tls: init at 0.3.6.1

parent a6955fd8
Branches
Tags
No related merge requests found
......@@ -287,6 +287,7 @@ in [ callHackage "Cabal" "3.8.1.0"
, callHackage "hspec-core" "2.10.0.1"
, callHackage "hspec-discover" "2.10.0.1"
, callHackage "hspec-meta" "2.9.3"
, callHackage "http-client-tls" "0.3.6.1"
, callHackage "http-client" "0.7.13.1"
, callHackage "http-date" "0.0.11"
, callHackage "http-media" "0.8.0.0"
......
......@@ -347,6 +347,8 @@ final: prev: with pkgs.haskell.lib; {
http-client = prev.callPackage (./pkgs/http-client.nix) { };
http-client-tls = prev.callPackage (./pkgs/http-client-tls.nix) { };
http-date = prev.callPackage (./pkgs/http-date.nix) { };
http-media = prev.callPackage (./pkgs/http-media.nix) { };
......
{ mkDerivation
, base
, bytestring
, case-insensitive
, connection
, containers
, cryptonite
, data-default-class
, exceptions
, gauge
, hspec
, http-client
, http-types
, lib
, memory
, network
, network-uri
, text
, tls
, transformers
}:
mkDerivation {
pname = "http-client-tls";
version = "0.3.6.1";
sha256 = "b19fff86a41b6035cbd97271a5d6965e43dcc4bedbe4c03dd586fed65fbac80d";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [
base
bytestring
case-insensitive
connection
containers
cryptonite
data-default-class
exceptions
http-client
http-types
memory
network
network-uri
text
tls
transformers
];
testHaskellDepends = [
base
connection
hspec
http-client
http-types
];
benchmarkHaskellDepends = [ base gauge http-client ];
enableLibraryProfiling = false;
enableExecutableProfiling = false;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "https://github.com/snoyberg/http-client";
description = "http-client backend using the connection package and tls library";
license = lib.licenses.mit;
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