fcgiwrap: fix build with systemd 230

Closes #15791.
This commit is contained in:
Valérian Galliat 2016-05-29 14:46:56 -04:00
parent bfefc54bc5
commit 3fbd047736

View file

@ -13,6 +13,11 @@ stdenv.mkDerivation rec {
buildInputs = [ autoreconfHook systemd fcgi pkgconfig ];
# systemd 230 no longer has libsystemd-daemon as a separate entity from libsystemd
postPatch = ''
substituteInPlace configure.ac --replace libsystemd-daemon libsystemd
'';
meta = with stdenv.lib; {
homepage = https://nginx.localdomain.pl/wiki/FcgiWrap;
description = "Simple server for running CGI applications over FastCGI";