Switch to yt-dlp again that can download De Mol
This commit is contained in:
parent
d31f145e30
commit
40b8b1db30
1 changed files with 17 additions and 1 deletions
|
@ -11,6 +11,22 @@
|
||||||
];
|
];
|
||||||
|
|
||||||
home-manager.users.charlotte = { ... }: {
|
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=";
|
||||||
|
})
|
||||||
|
];
|
||||||
|
}))
|
||||||
|
];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue