summaryrefslogtreecommitdiffstats
path: root/pkgs/servers/fcgiwrap
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/servers/fcgiwrap')
-rw-r--r--pkgs/servers/fcgiwrap/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/servers/fcgiwrap/default.nix b/pkgs/servers/fcgiwrap/default.nix
index 54b699e8a6de..ee3f02d0425e 100644
--- a/pkgs/servers/fcgiwrap/default.nix
+++ b/pkgs/servers/fcgiwrap/default.nix
@@ -1,4 +1,4 @@
-{ lib, stdenv, fetchurl, systemd, fcgi, autoreconfHook, pkgconfig }:
+{ lib, stdenv, fetchurl, systemd, fcgi, autoreconfHook, pkg-config }:
stdenv.mkDerivation rec {
pname = "fcgiwrap";
@@ -12,7 +12,7 @@ stdenv.mkDerivation rec {
NIX_CFLAGS_COMPILE = "-Wno-error=implicit-fallthrough";
configureFlags = [ "--with-systemd" "--with-systemdsystemunitdir=$(out)/etc/systemd/system" ];
- nativeBuildInputs = [ autoreconfHook pkgconfig ];
+ nativeBuildInputs = [ autoreconfHook pkg-config ];
buildInputs = [ systemd fcgi ];
# systemd 230 no longer has libsystemd-daemon as a separate entity from libsystemd