2014-04-04 21:29:50 +00:00
|
|
|
{ cabal, blazeBuilder, caseInsensitive, conduit, conduitExtra
|
|
|
|
, connection, cookie, dataDefaultClass, hspec, httpClient
|
|
|
|
, httpClientTls, httpTypes, HUnit, liftedBase, monadControl, mtl
|
|
|
|
, network, networkConduit, resourcet, streamingCommons, text, time
|
|
|
|
, transformers, utf8String, wai, warp, warpTls
|
2011-12-29 16:42:08 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "http-conduit";
|
2014-04-28 17:17:40 +00:00
|
|
|
version = "2.1.2";
|
|
|
|
sha256 = "11g79yfgm2fzcy7gwk9f5np4p6fknsbjkm858v8khb4a1gmbrqvn";
|
2011-12-29 16:42:08 +00:00
|
|
|
buildDepends = [
|
2014-04-04 21:29:50 +00:00
|
|
|
conduit httpClient httpClientTls httpTypes liftedBase monadControl
|
|
|
|
mtl resourcet transformers
|
2011-12-29 16:42:08 +00:00
|
|
|
];
|
2013-02-24 21:09:07 +00:00
|
|
|
testDepends = [
|
2014-04-04 21:29:50 +00:00
|
|
|
blazeBuilder caseInsensitive conduit conduitExtra connection cookie
|
|
|
|
dataDefaultClass hspec httpClient httpTypes HUnit liftedBase
|
|
|
|
network networkConduit streamingCommons text time transformers
|
2014-02-21 22:33:37 +00:00
|
|
|
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 22:36:36 +00:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2011-12-29 16:42:08 +00:00
|
|
|
};
|
|
|
|
})
|