wip: aarch64 widevine for helium

This commit is contained in:
Sean Kovacs 2025-11-19 13:51:39 -05:00
commit 8240479389
Signed by: sckova
GPG key ID: 00F325187C68651A
3 changed files with 28 additions and 6 deletions

View file

@ -5,7 +5,24 @@ final: prev: {
else
null;
helium-browser = prev.callPackage (builtins.path { path = ./helium-browser/package.nix; }) { };
# helium-browser =
# prev.callPackage
# (builtins.path {
# path = ./helium-browser/package.nix;
# })
# {
# helium-widevine = prev.callPackage (builtins.path {
# path = ./helium-browser/widevine-aarch64-linux.nix;
# }) { };
# };
helium-browser =
let
helium-widevine = prev.callPackage ./helium-browser/widevine-aarch64-linux.nix { };
in
prev.callPackage ./helium-browser/package.nix {
inherit helium-widevine;
};
strawberry-master = prev.callPackage (builtins.path {
path = ./strawberry/package.nix;