2024-03-14 13:24:49 +03:00
|
|
|
{ pkgs, ... }: {
|
2024-05-04 23:15:57 +03:00
|
|
|
# Instead of overlaying and rebuilding YtDlp I download the release from
|
|
|
|
# GitHub and patch it for Nix.
|
2024-03-14 13:24:49 +03:00
|
|
|
environment.systemPackages = with pkgs; [
|
|
|
|
(pkgs.callPackage ./ytdlp {})
|
|
|
|
];
|
|
|
|
}
|