1 { lib, stdenv, fetchFromGitHub, fetchurl, apacheHttpd }:
3 stdenv.mkDerivation rec {
7 src = fetchFromGitHub {
8 owner = "FastCGI-Archives";
11 hash = "sha256-ovir59kCjKkgbraX23nsmzlMzGdeNTyj3MQd8cgvLsg=";
14 buildInputs = [ apacheHttpd ];
17 cp Makefile.AP2 Makefile
18 makeFlags="top_dir=${apacheHttpd.dev}/share prefix=$out"
22 homepage = "https://github.com/FastCGI-Archives/mod_fastcgi";
23 description = "Provide support for the FastCGI protocol";
26 mod_fastcgi is a module for the Apache web server that enables
27 FastCGI - a standards based protocol for communicating with
28 applications that generate dynamic content for web pages. FastCGI
29 provides a superset of CGI functionality, but a subset of the
30 functionality of programming for a particular web server API.
31 Nonetheless, the feature set is rich enough for programming
32 virtually any type of web application, but the result is generally
36 platforms = lib.platforms.linux;