apcupsd: unbreak build

Fix build since commit 093cc00cdd9d8cf31ecce5bc1dd3645c460a1b98
("cc-wrapper: Always export environment variables for binutils").

The apcupsd build system uses "$(STRIP)" as flags for the "install"
program. Now that $STRIP is the path to the strip binary, we cannot pass
that to "install". Fixes this:

...
COPY multimon.cgi => /nix/store/...-apcupsd-3.14.14/libexec/cgi-bin
/nix/store/...-coreutils-8.27/bin/install: cannot stat 'strip': No such file or directory

+5
+5
pkgs/servers/apcupsd/default.nix
··· 15 15 16 16 buildInputs = [ pkgconfig utillinux man ] ++ stdenv.lib.optional enableCgiScripts gd; 17 17 18 + prePatch = '' 19 + sed -e "s,\$(INSTALL_PROGRAM) \$(STRIP),\$(INSTALL_PROGRAM)," \ 20 + -i ./src/apcagent/Makefile ./autoconf/targets.mak 21 + ''; 22 + 18 23 # ./configure ignores --prefix, so we must specify some paths manually 19 24 # There is no real reason for a bin/sbin split, so just use bin. 20 25 preConfigure = ''