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.
This commit is contained in:
Ismaël Bouya
2026-05-27 10:44:43 +02:00
parent 7792ada0b1
commit 892ae6ab82
@@ -10,8 +10,8 @@ runCommandLocal "bitlbee-plugins"
inherit plugins;
buildInputs = [
bitlbee
plugins
];
]
++ plugins;
}
''
mkdir -p $out/lib/bitlbee