summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/wai-handler-fastcgi/default.nix
blob: feb186209b7bfa3e8bf35798cb6fc2cb16126033 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ cabal, wai, waiExtra, fcgi }:

cabal.mkDerivation (self: {
  pname = "wai-handler-fastcgi";
  version = "2.0.0";
  sha256 = "1pqiqx1wq2iv705f8bd4sxmjmmkkxiw4g6a9dpwnawwb5n0d88nl";
  buildDepends = [
    wai waiExtra fcgi
  ];
  meta = {
    description = "A WAI handler that out to the libfcgi C library";
    license = self.stdenv.lib.licenses.mit;
    platforms = self.ghc.meta.platforms;
  };
})