NixOS / nixpkgs

Nix Packages collection & NixOS
MIT License
17.44k stars 13.64k forks source link

Update request: invidious 0.20.1-unstable-2024-03-08 → 0.20.1-unstable-2024-03-31 #300537

Closed d4g closed 5 months ago

d4g commented 5 months ago

Notify maintainers @GaetanLepage @infinisil @sbruder


Note for maintainers: Please tag this issue in your PR.


Add a :+1: reaction to issues you find important.

d4g commented 5 months ago

As invidious in the old version is broken as it cannot fetch videos anymore, please update to latest version and latest commit: https://github.com/iv-org/invidious/pull/4552

Relevant issue: https://github.com/iv-org/invidious/issues/4498

siph commented 5 months ago

Here's an overlay with the fix until then:

(final: prev: {
    invidious = prev.invidious.overrideAttrs (_oldAttrs: {
      src = prev.fetchFromGitHub {
        owner = "iv-org";
        repo = "invidious";
        fetchSubmodules = true;
        rev = "08390acd0c17875fddb84cabba54197a5b5740e4";
        sha256 = "sha256-75C/ImX/PYikVdSO4rZM/aYyEgx6pU90BHNeRFfcsDM=";
      };
    });
})