nixos/overlays/modifications/fix-ffmpeg_7-full.nix

15 lines
291 B
Nix
Raw Normal View History

2026-01-30 22:20:02 +08:00
{inputs, ...}: _final: prev: let
inherit (prev.stdenv.hostPlatform) system;
pkgs = import inputs.nixpkgs-485356 {
localSystem = {
inherit system;
};
config = {
allowUnfree = true;
cudaSupport = true;
};
};
in {
ffmpeg_7-full = pkgs.ffmpeg_7-full;
}