nix/module/common/YtDlp.nix

8 lines
204 B
Nix
Raw Normal View History

2024-03-14 13:24:49 +03:00
{ pkgs, ... }: {
# 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 {})
];
}