2024-05-23 11:43:35 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, autoreconfHook }:
|
2010-07-28 11:55:54 +00:00
|
|
|
|
2024-07-07 02:20:42 +00:00
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "fcgi";
|
2020-03-31 07:35:52 +00:00
|
|
|
version = "2.4.2";
|
2008-02-08 10:54:56 +00:00
|
|
|
|
2020-03-31 07:35:52 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "FastCGI-Archives";
|
|
|
|
repo = "fcgi2";
|
2024-07-07 02:20:42 +00:00
|
|
|
rev = finalAttrs.version;
|
|
|
|
hash = "sha256-4U/Mc2U7tK/fo4B9NBwYKzDuLApvSzWR4mqWzZ00H8o=";
|
2008-02-08 10:54:56 +00:00
|
|
|
};
|
|
|
|
|
2020-03-31 07:35:52 +00:00
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
2011-08-10 22:16:48 +00:00
|
|
|
|
2011-12-07 10:29:52 +00:00
|
|
|
postInstall = "ln -s . $out/include/fastcgi";
|
|
|
|
|
2024-07-07 02:20:42 +00:00
|
|
|
meta = {
|
|
|
|
description = "Language independent, scalable, open extension to CGI";
|
2022-02-06 10:23:17 +00:00
|
|
|
homepage = "https://fastcgi-archives.github.io/"; # Formerly http://www.fastcgi.com/
|
2024-07-07 02:20:42 +00:00
|
|
|
license = "FastCGI, see LICENSE.TERMS";
|
2022-05-05 00:52:27 +00:00
|
|
|
mainProgram = "cgi-fcgi";
|
2024-07-07 02:20:42 +00:00
|
|
|
platforms = lib.platforms.all;
|
2024-07-07 02:20:59 +00:00
|
|
|
maintainers = with lib.maintainers; [ jtbx ];
|
2008-02-08 10:54:56 +00:00
|
|
|
};
|
2024-07-07 02:20:42 +00:00
|
|
|
})
|