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:
@@ -10,8 +10,8 @@ runCommandLocal "bitlbee-plugins"
|
||||
inherit plugins;
|
||||
buildInputs = [
|
||||
bitlbee
|
||||
plugins
|
||||
];
|
||||
]
|
||||
++ plugins;
|
||||
}
|
||||
''
|
||||
mkdir -p $out/lib/bitlbee
|
||||
|
||||
Reference in New Issue
Block a user