jellyfin: append version to plugin name
This commit is contained in:
parent
a5b9a62f73
commit
f19d14c509
1 changed files with 6 additions and 1 deletions
|
|
@ -58,7 +58,12 @@ let
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
pluginName = src: (builtins.fromJSON (builtins.readFile "${src}/meta.json")).name;
|
pluginName =
|
||||||
|
src:
|
||||||
|
let
|
||||||
|
meta = builtins.fromJSON (builtins.readFile "${src}/meta.json");
|
||||||
|
in
|
||||||
|
"${meta.name}_${meta.version}";
|
||||||
|
|
||||||
mkJellyfinPlugin =
|
mkJellyfinPlugin =
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue