This repo is now a flake!

This commit is contained in:
2026-04-27 09:30:14 -04:00
parent c93f1c1a05
commit 3e5d8ccc96
3 changed files with 218 additions and 0 deletions

25
package.nix Normal file
View File

@@ -0,0 +1,25 @@
{ ffmpeg
, symlinkJoin
, writeShellApplication
}:
let
transcode-animated-video = writeShellApplication {
name = "transcode-animated-video";
runtimeInputs = [ ffmpeg ];
text = builtins.readFile ./transcode-animated-video.sh;
};
transcode-organic-video = writeShellApplication {
name = "transcode-organic-video";
runtimeInputs = [ ffmpeg ];
text = builtins.readFile ./transcode-organic-video.sh;
};
in
symlinkJoin {
name = "transcode-video";
paths = [
transcode-animated-video
transcode-organic-video
];
}