2021-01-19 06:50:56 +00:00
|
|
|
{ lib, stdenv, fetchurl, systemd, fcgi, autoreconfHook, pkg-config }:
|
2014-05-10 16:37:58 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "fcgiwrap";
|
2014-05-10 16:37:58 +00:00
|
|
|
version = "1.1.0";
|
|
|
|
|
|
|
|
src = fetchurl {
|
2019-04-22 08:14:28 +00:00
|
|
|
url = "https://github.com/gnosek/fcgiwrap/archive/${version}.tar.gz";
|
2014-05-10 16:37:58 +00:00
|
|
|
sha256 = "07y6s4mm86cv7p1ljz94sxnqa89y9amn3vzwsnbq5hrl4vdy0zac";
|
|
|
|
};
|
|
|
|
|
2018-03-11 14:58:26 +00:00
|
|
|
NIX_CFLAGS_COMPILE = "-Wno-error=implicit-fallthrough";
|
2014-05-10 16:37:58 +00:00
|
|
|
configureFlags = [ "--with-systemd" "--with-systemdsystemunitdir=$(out)/etc/systemd/system" ];
|
|
|
|
|
2021-01-19 06:50:56 +00:00
|
|
|
nativeBuildInputs = [ autoreconfHook pkg-config ];
|
2017-09-05 21:26:13 +00:00
|
|
|
buildInputs = [ systemd fcgi ];
|
2014-05-10 16:37:58 +00:00
|
|
|
|
2016-05-29 18:46:56 +00:00
|
|
|
# systemd 230 no longer has libsystemd-daemon as a separate entity from libsystemd
|
|
|
|
postPatch = ''
|
|
|
|
substituteInPlace configure.ac --replace libsystemd-daemon libsystemd
|
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://nginx.localdomain.pl/wiki/FcgiWrap";
|
2014-05-10 16:37:58 +00:00
|
|
|
description = "Simple server for running CGI applications over FastCGI";
|
|
|
|
maintainers = with maintainers; [ lethalman ];
|
2016-08-02 17:50:55 +00:00
|
|
|
platforms = with platforms; linux;
|
2020-06-30 19:41:19 +00:00
|
|
|
license = licenses.mit;
|
2014-05-10 16:37:58 +00:00
|
|
|
};
|
|
|
|
}
|