1 { lib, stdenv, fetchFromGitHub, fetchpatch, autoreconfHook }:
3 stdenv.mkDerivation rec {
7 src = fetchFromGitHub {
8 owner = "FastCGI-Archives";
11 sha256 = "1jhz6jfwv5kawa8kajvg18nfwc1b30f38zc0lggszd1vcmrwqkz1";
14 nativeBuildInputs = [ autoreconfHook ];
16 postInstall = "ln -s . $out/include/fastcgi";
19 description = "A language independent, scalable, open extension to CG";
20 homepage = "https://fastcgi-archives.github.io/"; # Formerly http://www.fastcgi.com/
21 license = "FastCGI see LICENSE.TERMS";
22 mainProgram = "cgi-fcgi";
23 platforms = platforms.all;