haskell-wai-handler-fastcgi: re-generate with cabal2nix

This commit is contained in:
Peter Simons 2014-01-02 00:20:06 +01:00
parent 053e029ee6
commit 27425f638d

View File

@ -1,14 +1,14 @@
{ cabal, wai, waiExtra, fcgi }:
{ cabal, fcgi, wai, waiExtra }:
cabal.mkDerivation (self: {
pname = "wai-handler-fastcgi";
version = "2.0.0";
sha256 = "1pqiqx1wq2iv705f8bd4sxmjmmkkxiw4g6a9dpwnawwb5n0d88nl";
buildDepends = [
wai waiExtra fcgi
];
buildDepends = [ wai waiExtra ];
extraLibraries = [ fcgi ];
meta = {
description = "A WAI handler that out to the libfcgi C library";
homepage = "http://www.yesodweb.com/book/web-application-interface";
description = "Wai handler to fastcgi";
license = self.stdenv.lib.licenses.mit;
platforms = self.ghc.meta.platforms;
};