ffmpeg-hardware-transcoding.../flake.nix

23 lines
459 B
Nix
Raw Normal View History

2024-09-17 12:28:01 +02:00
{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-24.05";
flake-utils.url = "github:numtide/flake-utils";
};
outputs = { nixpkgs, flake-utils, ... }:
flake-utils.lib.eachDefaultSystem (system:
let
pkgs = import nixpkgs {
inherit system;
2024-09-17 12:30:26 +02:00
config.allowUnfree = true;
2024-09-17 12:28:01 +02:00
};
in
{
devShells.default = pkgs.mkShell {
buildInputs = [
2024-09-17 12:30:26 +02:00
pkgs.ffmpeg-full
2024-09-17 12:28:01 +02:00
];
};
}
);
}