plugin: dlna-8.0.0.0

This commit is contained in:
Jonas Rabenstein 2025-09-20 00:14:21 +02:00 committed by Jonas Rabenstein
commit 4e2263c590
3 changed files with 338 additions and 0 deletions

21
plugin/dlna/default.nix Normal file
View file

@ -0,0 +1,21 @@
let
v."8.0.0.0" = {
hash = "sha256-5YUX+w4n3nBhAkdgjF9D5yY/jzRKxpW+mTQCBluzsVI=";
rev = "v8";
};
current =
lib:
lib.lists.fold (acc: v: if lib.strings.versionOlder acc v then v else acc) "0.0.0" (
builtins.attrNames v
);
in
{
lib,
version ? current lib,
hash ? v.${version}.hash or "sha256-AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=",
rev ? v.${version}.rev or "v${version}",
...
}:
{
inherit version hash rev;
}