nixpkgs/overlays/yt-dlp/default.nix

8 lines
132 B
Nix

self: super: {
yt-dlp = super.yt-dlp.overrideAttrs(old: {
patches = (old.patches or []) ++ [
./ard.patch
];
});
}