2013-11-21 15:27:39 +00:00
|
|
|
{ cabal, caseInsensitive, conduit, deepseq, httpdShed, httpTypes
|
|
|
|
, HUnit, mtl, network, parsec, pureMD5, split, testFramework
|
|
|
|
, testFrameworkHunit, wai, warp
|
|
|
|
}:
|
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "HTTP";
|
2013-12-14 10:28:54 +00:00
|
|
|
version = "4000.2.10";
|
|
|
|
sha256 = "1l97l6am45xgyg0dyxpfgbxc00wp8ishm7spd0hbgmwc5sgnvppg";
|
2013-11-21 15:27:39 +00:00
|
|
|
buildDepends = [ mtl network parsec ];
|
|
|
|
testDepends = [
|
|
|
|
caseInsensitive conduit deepseq httpdShed httpTypes HUnit mtl
|
|
|
|
network pureMD5 split testFramework testFrameworkHunit wai warp
|
|
|
|
];
|
|
|
|
jailbreak = true;
|
|
|
|
doCheck = false;
|
|
|
|
meta = {
|
|
|
|
homepage = "https://github.com/haskell/HTTP";
|
|
|
|
description = "A library for client-side HTTP";
|
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
|
|
};
|
|
|
|
})
|