Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
369 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
lib,
runCommandLocal,
bitlbee,
}:
plugins:
runCommandLocal "bitlbee-plugins"
{
inherit plugins;
buildInputs = [
bitlbee
plugins
];
}
''
mkdir -p $out/lib/bitlbee
for plugin in $plugins; do
for thing in $(ls $plugin/lib/bitlbee); do
ln -s $plugin/lib/bitlbee/$thing $out/lib/bitlbee/
done
done
''