From 2900b446b54222bb9255787fe0ef6d2e6062e157 Mon Sep 17 00:00:00 2001 From: Yorick Barbanneau Date: Thu, 25 Sep 2025 22:35:39 +0200 Subject: [PATCH] chore(overlay): remove custom widevine-cdm build --- nixos/includes/system/overlay.nix | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/nixos/includes/system/overlay.nix b/nixos/includes/system/overlay.nix index fe64130..cd103fb 100644 --- a/nixos/includes/system/overlay.nix +++ b/nixos/includes/system/overlay.nix @@ -4,17 +4,6 @@ (final: prev: { qutebrowser = prev.qutebrowser.override { enableWideVine = if pkgs.system == "x86_64-linux" then true else false; - # Get Widevine friom slackware as google CDN seems to not working anymore - # TODO: Remove this when resolved upstream - # https://github.com/NixOS/nixpkgs/issues/435671 - widevine-cdm = pkgs.widevine-cdm.overrideAttrs (oldAttrs: { - src = pkgs.fetchzip { - url = "https://alien.slackbook.org/slackbuilds/chromium-widevine-plugin/build/4.10.2891.0-linux-x64.zip" ; - hash = "sha256-ZO6FmqJUnB9VEJ7caJt58ym8eB3/fDATri3iOWCULRI"; - - stripRoot = false; - }; - }); }; }) inputs.nur.overlays.default