nix/packages/overlay.nix
Sean Kovacs aad9076ac3
rebase to unstable
update lock (12/15/2025)
2025-12-14 10:38:46 -05:00

32 lines
992 B
Nix

final: prev: {
widevine-helium =
if prev.stdenv.hostPlatform.system == "aarch64-linux" then
prev.callPackage ./helium-browser/widevine-aarch64-linux.nix { }
else
null;
# 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;
};
linux-asahi = prev.callPackage (builtins.path { path = ./linux-asahi-bleeding/package.nix; }) { };
spotifyd = prev.callPackage (builtins.path { path = ./spotifyd/package.nix; }) { };
widevine-firefox = prev.callPackage (builtins.path { path = ./widevine-firefox/package.nix; }) { };
}