Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
44 lines
1.1 KiB
Nix
44 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
apacheHttpd,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "mod_fastcgi";
|
|
version = "2.4.7.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "FastCGI-Archives";
|
|
repo = "mod_fastcgi";
|
|
rev = version;
|
|
hash = "sha256-ovir59kCjKkgbraX23nsmzlMzGdeNTyj3MQd8cgvLsg=";
|
|
};
|
|
|
|
buildInputs = [ apacheHttpd ];
|
|
|
|
preBuild = ''
|
|
cp Makefile.AP2 Makefile
|
|
makeFlags="top_dir=${apacheHttpd.dev}/share prefix=$out"
|
|
'';
|
|
|
|
meta = {
|
|
homepage = "https://github.com/FastCGI-Archives/mod_fastcgi";
|
|
description = "Provide support for the FastCGI protocol";
|
|
|
|
longDescription = ''
|
|
mod_fastcgi is a module for the Apache web server that enables
|
|
FastCGI - a standards based protocol for communicating with
|
|
applications that generate dynamic content for web pages. FastCGI
|
|
provides a superset of CGI functionality, but a subset of the
|
|
functionality of programming for a particular web server API.
|
|
Nonetheless, the feature set is rich enough for programming
|
|
virtually any type of web application, but the result is generally
|
|
more scalable.
|
|
'';
|
|
|
|
platforms = lib.platforms.linux;
|
|
};
|
|
}
|