2023-02-16 17:41:37 +00:00
|
|
|
{ lib, buildGoModule, installShellFiles, fetchFromGitHub, ffmpeg, ttyd, chromium, makeWrapper }:
|
2022-10-30 15:09:59 +00:00
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "vhs";
|
2023-03-04 12:14:45 +00:00
|
|
|
version = "0.3.0";
|
2022-10-30 15:09:59 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "charmbracelet";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2023-03-04 12:14:45 +00:00
|
|
|
hash = "sha256-62FS/FBhQNpj3dAfKfIUKY+IJeeaONzqRu7mG49li+o";
|
2022-10-30 15:09:59 +00:00
|
|
|
};
|
|
|
|
|
2023-03-04 12:14:45 +00:00
|
|
|
vendorHash = "sha256-+BLZ+Ni2dqboqlOEjFNF6oB/vNDlNRCb6AiDH1uSsLw";
|
2022-10-30 15:09:59 +00:00
|
|
|
|
|
|
|
nativeBuildInputs = [ installShellFiles makeWrapper ];
|
|
|
|
|
|
|
|
ldflags = [ "-s" "-w" "-X=main.Version=${version}" ];
|
|
|
|
|
|
|
|
postInstall = ''
|
2023-02-16 17:41:37 +00:00
|
|
|
wrapProgram $out/bin/vhs --prefix PATH : ${lib.makeBinPath [ chromium ffmpeg ttyd ]}
|
2022-10-30 15:09:59 +00:00
|
|
|
$out/bin/vhs man > vhs.1
|
|
|
|
installManPage vhs.1
|
|
|
|
installShellCompletion --cmd vhs \
|
|
|
|
--bash <($out/bin/vhs completion bash) \
|
|
|
|
--fish <($out/bin/vhs completion fish) \
|
|
|
|
--zsh <($out/bin/vhs completion zsh)
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "A tool for generating terminal GIFs with code";
|
|
|
|
homepage = "https://github.com/charmbracelet/vhs";
|
|
|
|
changelog = "https://github.com/charmbracelet/vhs/releases/tag/v${version}";
|
|
|
|
license = licenses.mit;
|
2023-03-04 12:14:45 +00:00
|
|
|
maintainers = with maintainers; [ maaslalani penguwin ];
|
2022-10-30 15:09:59 +00:00
|
|
|
};
|
|
|
|
}
|