forked from mirrors/nixpkgs
haskell-http-reverse-proxy: add version 0.1.0.5
This commit is contained in:
parent
008e86ed5c
commit
d770848b68
|
@ -0,0 +1,21 @@
|
|||
{ cabal, blazeBuilder, caseInsensitive, classyPreludeConduit
|
||||
, conduit, httpConduit, httpTypes, liftedBase, monadControl
|
||||
, network, networkConduit, text, wai, warp, word8
|
||||
}:
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "http-reverse-proxy";
|
||||
version = "0.1.0.5";
|
||||
sha256 = "1x1m9vklgg6x8niry8c5fxcjpmsmrpxv7j2i5h38hp1hbka3mpr0";
|
||||
buildDepends = [
|
||||
blazeBuilder caseInsensitive classyPreludeConduit conduit
|
||||
httpConduit httpTypes liftedBase monadControl network
|
||||
networkConduit text wai warp word8
|
||||
];
|
||||
meta = {
|
||||
homepage = "https://github.com/fpco/http-reverse-proxy";
|
||||
description = "Reverse proxy HTTP requests, either over raw sockets or with WAI";
|
||||
license = self.stdenv.lib.licenses.bsd3;
|
||||
platforms = self.ghc.meta.platforms;
|
||||
};
|
||||
})
|
|
@ -930,6 +930,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.final x y);
|
|||
HTTP_4000_2_6 = callPackage ../development/libraries/haskell/HTTP/4000.2.6.nix {};
|
||||
HTTP = self.HTTP_4000_2_6;
|
||||
|
||||
httpReverseProxy = callPackage ../development/libraries/haskell/http-reverse-proxy {};
|
||||
|
||||
hackageDb = callPackage ../development/libraries/haskell/hackage-db {};
|
||||
|
||||
haskellForMaths = callPackage ../development/libraries/haskell/HaskellForMaths {};
|
||||
|
|
Loading…
Reference in a new issue