nix: rename plugins with underscore

This commit is contained in:
DashieTM 2024-05-30 21:27:35 +02:00
parent 14cfcc16b0
commit 40beca475f

View file

@ -53,7 +53,7 @@ in
builtins.map
(entry:
if lib.types.package.check entry
then "lib${entry.pname}.so"
then "lib${lib.replaceStrings ["-"] ["_"] entry.pname}.so"
else "")
cfg.config.plugins;
path =