From 892ae6ab82c2585e2b635adad723d241aeed2da9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Isma=C3=ABl=20Bouya?= Date: Wed, 27 May 2026 10:44:43 +0200 Subject: [PATCH] Fix: bitlbee-plugins buildInputs should not be nested plugins is a list, so it should not get nested in the buildInputs arrays. Ref: warning shown at build time: Dependency of package 'bitlbee-plugins' uses a nested list in attribute 'buildInputs'. This is deprecated as of Nixpkgs release 26.05, and support will be removed in a future nixpkgs release. --- .../networking/instant-messengers/bitlbee/plugins.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/networking/instant-messengers/bitlbee/plugins.nix b/pkgs/applications/networking/instant-messengers/bitlbee/plugins.nix index 81289e43c566..38f350bedf7d 100644 --- a/pkgs/applications/networking/instant-messengers/bitlbee/plugins.nix +++ b/pkgs/applications/networking/instant-messengers/bitlbee/plugins.nix @@ -10,8 +10,8 @@ runCommandLocal "bitlbee-plugins" inherit plugins; buildInputs = [ bitlbee - plugins - ]; + ] + ++ plugins; } '' mkdir -p $out/lib/bitlbee