mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
9bb3fccb5b
continuation of #109595 pkgconfig was aliased in 2018, however, it remained in all-packages.nix due to its wide usage. This cleans up the remaining references to pkgs.pkgsconfig and moves the entry to aliases.nix. python3Packages.pkgconfig remained unchanged because it's the canonical name of the upstream package on pypi.
62 lines
1.9 KiB
Nix
62 lines
1.9 KiB
Nix
{ lib, stdenv, fetchurl, pkg-config, systemd, util-linux, coreutils, wall, hostname, man
|
|
, enableCgiScripts ? true, gd
|
|
}:
|
|
|
|
assert enableCgiScripts -> gd != null;
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "apcupsd";
|
|
name = "${pname}-3.14.14";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/${pname}/${name}.tar.gz";
|
|
sha256 = "0rwqiyzlg9p0szf3x6q1ppvrw6f6dbpn2rc5z623fk3bkdalhxyv";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
buildInputs = [ util-linux man ] ++ lib.optional enableCgiScripts gd;
|
|
|
|
prePatch = ''
|
|
sed -e "s,\$(INSTALL_PROGRAM) \$(STRIP),\$(INSTALL_PROGRAM)," \
|
|
-i ./src/apcagent/Makefile ./autoconf/targets.mak
|
|
'';
|
|
|
|
# ./configure ignores --prefix, so we must specify some paths manually
|
|
# There is no real reason for a bin/sbin split, so just use bin.
|
|
preConfigure = ''
|
|
export ac_cv_path_SHUTDOWN=${systemd}/sbin/shutdown
|
|
export ac_cv_path_WALL=${wall}/bin/wall
|
|
sed -i 's|/bin/cat|${coreutils}/bin/cat|' configure
|
|
export configureFlags="\
|
|
--bindir=$out/bin \
|
|
--sbindir=$out/bin \
|
|
--sysconfdir=$out/etc/apcupsd \
|
|
--mandir=$out/share/man \
|
|
--with-halpolicydir=$out/share/halpolicy \
|
|
--localstatedir=/var/ \
|
|
--with-nologin=/run \
|
|
--with-log-dir=/var/log/apcupsd \
|
|
--with-pwrfail-dir=/run/apcupsd \
|
|
--with-lock-dir=/run/lock \
|
|
--with-pid-dir=/run \
|
|
--enable-usb \
|
|
${lib.optionalString enableCgiScripts "--enable-cgi --with-cgi-bin=$out/libexec/cgi-bin"}
|
|
"
|
|
'';
|
|
|
|
postInstall = ''
|
|
for file in "$out"/etc/apcupsd/*; do
|
|
sed -i -e 's|^WALL=.*|WALL="${wall}/bin/wall"|g' \
|
|
-e 's|^HOSTNAME=.*|HOSTNAME=`${hostname}/bin/hostname`|g' \
|
|
"$file"
|
|
done
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Daemon for controlling APC UPSes";
|
|
homepage = "http://www.apcupsd.com/";
|
|
license = licenses.gpl2;
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.bjornfor ];
|
|
};
|
|
}
|