https://github.com/aca/ffmpeg-builds.nix
nix flake for BtbN/FFmpeg-Builds
https://github.com/aca/ffmpeg-builds.nix
Last synced: 14 days ago
JSON representation
nix flake for BtbN/FFmpeg-Builds
- Host: GitHub
- URL: https://github.com/aca/ffmpeg-builds.nix
- Owner: aca
- Created: 2026-06-07T01:21:15.000Z (24 days ago)
- Default Branch: main
- Last Pushed: 2026-06-15T07:47:07.000Z (15 days ago)
- Last Synced: 2026-06-15T09:22:31.580Z (15 days ago)
- Language: Nix
- Size: 7.81 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README
Awesome Lists containing this project
README
ffmpeg-builds.nix
=================
Prebuilt static ffmpeg for x86_64-linux / aarch64-linux, as a flake.
Use from your system configuration
----------------------------------
flake.nix:
{
inputs.ffmpeg-bin.url = "github:aca/ffmpeg-builds.nix";
outputs = { nixpkgs, ffmpeg-bin, ... }: {
nixosConfigurations.myhost = nixpkgs.lib.nixosSystem {
modules = [
{ nixpkgs.overlays = [ ffmpeg-bin.overlays.default ]; }
./configuration.nix
];
};
};
}
configuration.nix:
environment.systemPackages = [ pkgs.ffmpeg-bin ]; # gpl (default)
# environment.systemPackages = [ pkgs.ffmpeg-bin-lgpl ]; # lgpl variant
Provides bin/ffmpeg, bin/ffprobe, bin/ffplay.