Add haskell-http-kit

This commit is contained in:
Shea Levy 2014-04-24 13:06:01 -04:00
parent af817ae0d8
commit c7f2d87a56
2 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1,16 @@
{ cabal, caseInsensitive, hspec, httpTypes, QuickCheck
, quickcheckInstances
}:
cabal.mkDerivation (self: {
pname = "http-kit";
version = "0.2.0";
sha256 = "0pwcaf52abyjy3jknb7q18j50qd7arz7ck8xffbv9pbp0z7lfd6n";
buildDepends = [ caseInsensitive httpTypes ];
testDepends = [ hspec httpTypes QuickCheck quickcheckInstances ];
meta = {
description = "A low-level HTTP library";
license = self.stdenv.lib.licenses.mit;
platforms = self.ghc.meta.platforms;
};
})

View File

@ -1374,6 +1374,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.finalReturn x
httpCommon = callPackage ../development/libraries/haskell/http-common {};
httpKit = callPackage ../development/libraries/haskell/http-kit {};
httpReverseProxy = callPackage ../development/libraries/haskell/http-reverse-proxy {};
hackageDb = callPackage ../development/libraries/haskell/hackage-db {};