initial commit
This commit is contained in:
21
default.nix
Normal file
21
default.nix
Normal 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
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user