nixpkgs/pkgs/by-name/fc/fcgi/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
740 B
Nix
Raw Normal View History

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