nixpkgs/pkgs/applications/misc/vhs/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

39 lines
1.2 KiB
Nix
Raw Normal View History

2023-03-22 17:15:07 +00:00
{ lib, stdenv, buildGoModule, installShellFiles, fetchFromGitHub, ffmpeg, ttyd, chromium, makeWrapper }:
2022-10-27 16:36:22 +00:00
buildGoModule rec {
pname = "vhs";
2024-04-16 04:41:14 +00:00
version = "0.7.2";
2022-10-27 16:36:22 +00:00
src = fetchFromGitHub {
owner = "charmbracelet";
repo = pname;
rev = "v${version}";
2024-04-16 04:41:14 +00:00
hash = "sha256-CWurSAxEXAquWXEOyBWBF6JN9Pesm5hBS3jVNv56dvE=";
2022-10-27 16:36:22 +00:00
};
2024-04-16 04:41:14 +00:00
vendorHash = "sha256-Kh5Sy7URmhsyBF35I0TaDdpSLD96MnkwIS+96+tSyO0=";
2022-10-27 16:36:22 +00:00
nativeBuildInputs = [ installShellFiles makeWrapper ];
ldflags = [ "-s" "-w" "-X=main.Version=${version}" ];
postInstall = ''
2023-03-22 17:15:07 +00:00
wrapProgram $out/bin/vhs --prefix PATH : ${lib.makeBinPath (lib.optionals stdenv.isLinux [ chromium ] ++ [ ffmpeg ttyd ])}
2022-10-27 16:36:22 +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";
mainProgram = "vhs";
2022-10-27 16:36:22 +00:00
homepage = "https://github.com/charmbracelet/vhs";
changelog = "https://github.com/charmbracelet/vhs/releases/tag/v${version}";
license = licenses.mit;
2023-02-25 16:28:49 +00:00
maintainers = with maintainers; [ maaslalani penguwin ];
2022-10-27 16:36:22 +00:00
};
}