pacemaker: enable strictDeps

This commit is contained in:
Stefan Frijters
2026-05-24 22:49:26 +02:00
parent d17bdfaa4e
commit 1152ae98e3
+11 -4
View File
@@ -8,6 +8,8 @@
corosync,
dbus,
fetchFromGitHub,
getopt,
gettext,
glib,
gnutls,
libqb,
@@ -42,25 +44,30 @@ stdenv.mkDerivation (finalAttrs: {
nativeBuildInputs = [
autoconf
automake
gettext
getopt
libtool
pkg-config
python3
];
buildInputs = [
bash
bzip2
corosync
dbus.dev
dbus
glib
gnutls
libqb
libtool
libuuid
libxml2.dev
libxslt.dev
libxml2
libxslt
pam
python3
];
strictDeps = true;
preConfigure = ''
./autogen.sh --prefix="$out"
'';