26 lines
315 B
Nix
26 lines
315 B
Nix
{
|
|
bash,
|
|
ffmpeg,
|
|
fzf,
|
|
gum,
|
|
stdenv,
|
|
tree,
|
|
...
|
|
}:
|
|
stdenv.mkDerivation {
|
|
name = "transcode-davinci-resolve";
|
|
src = ./.;
|
|
|
|
buildInputs = [
|
|
bash
|
|
ffmpeg
|
|
fzf
|
|
gum
|
|
tree
|
|
];
|
|
|
|
installPhase = ''
|
|
install -Dm755 transcode-davinci-resolve.sh $out/bin/transcode-davinci-resolve
|
|
'';
|
|
}
|