Add http-common haskell package.

This fixes nixpkgs evaluation

Signed-off-by: Shea Levy <shea@shealevy.com>
This commit is contained in:
Shea Levy 2014-01-16 10:08:40 -05:00
parent e7cec32922
commit 7f2559272b
2 changed files with 21 additions and 0 deletions

View file

@ -0,0 +1,19 @@
{ cabal, base64Bytestring, blazeBuilder, caseInsensitive, mtl
, network, text, transformers, unorderedContainers
}:
cabal.mkDerivation (self: {
pname = "http-common";
version = "0.7.0.1";
sha256 = "1brflygyf8y60jilrl6p8jdr5k5zwcqpdhj6j51vj9n4gsnr6a8d";
buildDepends = [
base64Bytestring blazeBuilder caseInsensitive mtl network text
transformers unorderedContainers
];
meta = {
homepage = "http://research.operationaldynamics.com/projects/http-streams/";
description = "Common types for HTTP clients and servers";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})

View file

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