Add patch to yt-dlp
This commit is contained in:
parent
8134fc69bb
commit
333c001606
2 changed files with 14 additions and 2 deletions
|
@ -49,7 +49,6 @@
|
||||||
okular
|
okular
|
||||||
ranger
|
ranger
|
||||||
uni
|
uni
|
||||||
yt-dlp
|
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{ ... }:
|
{ pkgs, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
|
@ -9,4 +9,17 @@
|
||||||
./hledger
|
./hledger
|
||||||
./obs
|
./obs
|
||||||
];
|
];
|
||||||
|
|
||||||
|
home-manager.users.charlotte = { ... }: {
|
||||||
|
home.packages = with pkgs; [
|
||||||
|
(yt-dlp.overrideAttrs (old: {
|
||||||
|
patches = (old.patches or [ ]) ++ [
|
||||||
|
(fetchpatch {
|
||||||
|
url = https://github.com/yt-dlp/yt-dlp/pull/6654.patch;
|
||||||
|
hash = "sha256-MDQKda37LqvhUhr+0yJqsmziTs/eUZ/LRfKyyVDbrBM=";
|
||||||
|
})
|
||||||
|
];
|
||||||
|
}))
|
||||||
|
];
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue