Philip Taron 22b88ba79d
treewide: adjust meta descriptions to avoid definite or indefinite articles
This patch was produced in Vim by me, a human being. All errors are the fault of the operator. I did try to be careful.

Co-authored-by: Peder Bergebakken Sundt <pbsds@hotmail.com>
Co-authored-by: dotlambda <nix@dotlambda.de>
2025-06-05 11:04:25 -07:00

28 lines
656 B
Nix

{
lib,
buildGoModule,
fetchFromGitHub,
}:
buildGoModule rec {
pname = "f1viewer";
version = "2.7.0";
src = fetchFromGitHub {
owner = "SoMuchForSubtlety";
repo = "f1viewer";
rev = "v${version}";
sha256 = "sha256-jXC2dENXuqicNQqTHyZKsjibDvjta/npQmf3+uivjX0=";
};
vendorHash = "sha256-UNeH3zxgssXxFpJws6nAL8EgXt0DRyAQfmlJWz/qyDg=";
meta = with lib; {
description = "TUI to view Formula 1 footage using VLC or another media player";
homepage = "https://github.com/SoMuchForSubtlety/f1viewer";
license = licenses.gpl3Only;
maintainers = with maintainers; [ michzappa ];
mainProgram = "f1viewer";
};
}