initial commit

This commit is contained in:
2023-12-20 17:08:11 -05:00
commit c93f1c1a05
5 changed files with 121 additions and 0 deletions

21
default.nix Normal file
View File

@@ -0,0 +1,21 @@
{ stdenv, pkgs, ... }:
let
transcode-animated-video = with pkgs; writeShellApplication {
name = "transcode-animated-video.sh";
runtimeInputs = [ ffmpeg ];
text = builtins.readFile ./transcode-animated-video.sh;
};
transcode-organic-video = with pkgs; writeShellApplication {
name = "transcode-organic-video.sh";
runtimeInputs = [ ffmpeg ];
text = builtins.readFile ./transcode-organic-video.sh;
};
in {
environment.systemPackages = [
transcode-animated-video
transcode-organic-video
];
}