2014-02-21 22:33:37 +00:00
|
|
|
{ cabal, blazeBuilder, caseInsensitive, conduit, connection, cookie
|
|
|
|
, dataDefaultClass, hspec, httpClient, httpClientConduit
|
2013-12-09 12:03:20 +00:00
|
|
|
, httpClientMultipart, httpClientTls, httpTypes, HUnit, liftedBase
|
2014-02-21 22:33:37 +00:00
|
|
|
, network, networkConduit, resourcet, text, time, transformers
|
|
|
|
, utf8String, wai, warp, warpTls
|
2011-12-29 16:42:08 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "http-conduit";
|
2014-03-11 10:49:24 +00:00
|
|
|
version = "2.0.0.8";
|
|
|
|
sha256 = "1yralv1nalvdpgamnbjl8xm4lrx22m3v6jancrzisq38a680q96b";
|
2011-12-29 16:42:08 +00:00
|
|
|
buildDepends = [
|
2013-12-09 12:03:20 +00:00
|
|
|
conduit httpClient httpClientConduit httpClientTls httpTypes
|
|
|
|
liftedBase resourcet transformers
|
2011-12-29 16:42:08 +00:00
|
|
|
];
|
2013-02-24 21:09:07 +00:00
|
|
|
testDepends = [
|
2014-02-21 22:33:37 +00:00
|
|
|
blazeBuilder caseInsensitive conduit connection cookie
|
|
|
|
dataDefaultClass hspec httpClient httpClientMultipart httpTypes
|
|
|
|
HUnit liftedBase network networkConduit text time transformers
|
|
|
|
utf8String wai warp warpTls
|
2013-02-24 21:09:07 +00:00
|
|
|
];
|
2013-12-10 10:10:50 +00:00
|
|
|
doCheck = false;
|
2011-12-29 16:42:08 +00:00
|
|
|
meta = {
|
2012-01-06 13:29:53 +00:00
|
|
|
homepage = "http://www.yesodweb.com/book/http-conduit";
|
2011-12-29 16:42:08 +00:00
|
|
|
description = "HTTP client package with conduit interface and HTTPS support";
|
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
2013-05-10 23:36:36 +01:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2011-12-29 16:42:08 +00:00
|
|
|
};
|
|
|
|
})
|