wip: aarch64 widevine for helium

This commit is contained in:
Sean Kovacs 2025-11-13 17:00:09 -05:00
commit ae47403ed8
Signed by: sckova
GPG key ID: 00F325187C68651A
8 changed files with 99 additions and 21 deletions

View file

@ -0,0 +1,15 @@
lib: {
description = "Widevine CDM";
homepage = "https://www.widevine.com";
sourceProvenance = with lib.sourceTypes; [ binaryNativeCode ];
license = lib.licenses.unfree;
maintainers = with lib.maintainers; [
jlamur
bearfm
];
platforms = lib.map (name: lib.removeSuffix ".nix" (lib.removePrefix "widevine-" name)) (
lib.filter (name: name != "meta.nix" && name != "package.nix") (
builtins.attrNames (builtins.readDir ./.)
)
);
}