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

http-conduit: init at 2.3.8

parent ed70161b
Branches
No related merge requests found
......@@ -412,6 +412,7 @@ in H.HorizonExport.MakePackageSet
, H.callHackage "http-api-data" "0.5"
, H.callHackage "http-client-tls" "0.3.6.1"
, H.callHackage "http-client" "0.7.13.1"
, H.callHackage "http-conduit" "2.3.8"
, H.callHackage "http-date" "0.0.11"
, H.callHackage "http-media" "0.8.0.0"
, H.callHackage "http-types" "0.12.3"
......
......@@ -643,6 +643,8 @@ self: with pkgs.haskell.lib; {
http-client-tls = self.callPackage (./pkgs/http-client-tls.nix) { };
http-conduit = self.callPackage (./pkgs/http-conduit.nix) { };
http-date = self.callPackage (./pkgs/http-date.nix) { };
http-media = self.callPackage (./pkgs/http-media.nix) { };
......
{ mkDerivation
, HUnit
, aeson
, attoparsec
, base
, blaze-builder
, bytestring
, case-insensitive
, conduit
, conduit-extra
, connection
, cookie
, data-default-class
, hspec
, http-client
, http-client-tls
, http-types
, lib
, mtl
, network
, resourcet
, streaming-commons
, temporary
, text
, time
, tls
, transformers
, unliftio
, unliftio-core
, utf8-string
, wai
, wai-conduit
, warp
, warp-tls
}:
mkDerivation {
pname = "http-conduit";
version = "2.3.8";
sha256 = "cfbef293856fdcce58618726ff911ca28e2ad07c8522b2cd1cfa2cb6e02542ae";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [
aeson
attoparsec
base
bytestring
conduit
conduit-extra
http-client
http-client-tls
http-types
mtl
resourcet
transformers
unliftio-core
];
testHaskellDepends = [
aeson
base
blaze-builder
bytestring
case-insensitive
conduit
conduit-extra
connection
cookie
data-default-class
hspec
http-client
http-types
HUnit
network
resourcet
streaming-commons
temporary
text
time
tls
transformers
unliftio
utf8-string
wai
wai-conduit
warp
warp-tls
];
enableLibraryProfiling = true;
enableExecutableProfiling = true;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "http://www.yesodweb.com/book/http-conduit";
description = "HTTP client package with conduit interface and HTTPS support";
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