plugin: dlna-8.0.0.0
This commit is contained in:
parent
ad97ab279e
commit
4e2263c590
3 changed files with 338 additions and 0 deletions
21
plugin/dlna/default.nix
Normal file
21
plugin/dlna/default.nix
Normal 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;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue