From ad24ab01de8953993732f15431f07866ab3da152 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vladim=C3=ADr=20=C4=8Cun=C3=A1t?= Date: Sat, 18 Jun 2022 10:42:04 +0200 Subject: [PATCH] makeDBusConf: reduce build closure *buildInputs take .dev outputs by default, but we don't need it here. The extra dependency (introduced by commit d1720612814) was breaking tests like nixosTests.containers-imperative and nixosTests.installer.* https://hydra.nixos.org/eval/1767666#tabs-still-fail --- pkgs/development/libraries/dbus/make-dbus-conf.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/libraries/dbus/make-dbus-conf.nix b/pkgs/development/libraries/dbus/make-dbus-conf.nix index 35b232b2a329..125da383c8d1 100644 --- a/pkgs/development/libraries/dbus/make-dbus-conf.nix +++ b/pkgs/development/libraries/dbus/make-dbus-conf.nix @@ -20,12 +20,12 @@ runCommand "dbus-1" allowSubstitutes = false; nativeBuildInputs = [ - libxslt + libxslt.bin findXMLCatalogs ]; buildInputs = [ - dbus + dbus.out ]; } ''