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