add flake

This commit is contained in:
Alexander Jacobsen 2026-07-17 22:09:12 +02:00
parent fcaaeaaf5d
commit 53f63ee343
2 changed files with 47 additions and 0 deletions

20
flake.nix Normal file
View file

@ -0,0 +1,20 @@
{
description = "pixelflut video/image player (ffmpeg-python + C renderer)";
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixos-26.05";
outputs = {
self,
nixpkgs,
}: let
pkgs = nixpkgs.legacyPackages.x86_64-linux;
in {
devShells.x86_64-linux.default = pkgs.mkShell {
packages = [
(pkgs.python3.withPackages (ps: [ps.ffmpeg-python]))
pkgs.ffmpeg
pkgs.gcc13
];
};
};
}