Switch to yt-dlp again that can download De Mol

This commit is contained in:
Charlotte Van Petegem 2023-05-02 15:33:49 +02:00
parent d31f145e30
commit 40b8b1db30
No known key found for this signature in database
GPG key ID: 019E764B7184435A

View file

@ -11,6 +11,22 @@
];
home-manager.users.charlotte = { ... }: {
home.packages = with pkgs; [ yt-dlp ];
home.packages = with pkgs; [
(yt-dlp.overrideAttrs (old: {
version = "unstable";
src = pkgs.fetchFromGitHub {
owner = "yt-dlp";
repo = "yt-dlp";
rev = "b423b6a48e0b19260bc95ab7d72d2138d7f124dc";
hash = "sha256-09eELJXIekLGVHjDr9XXPYjsew+ZsSkcAmcMF27mcv8=";
};
patches = (old.patches or []) ++ [
(pkgs.fetchpatch {
url = "https://patch-diff.githubusercontent.com/raw/yt-dlp/yt-dlp/pull/6654.diff";
hash = "sha256-TNOkhfCf02WZaHyTvlBKBfRre719mdScRJ0azyLTSyQ=";
})
];
}))
];
};
}