nixpkgs/pkgs/applications/video/f1viewer/default.nix

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

24 lines
624 B
Nix
Raw Normal View History

2021-12-05 16:46:00 +01:00
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "f1viewer";
2022-04-10 21:54:19 +02:00
version = "2.7.0";
2021-12-05 16:46:00 +01:00
src = fetchFromGitHub {
owner = "SoMuchForSubtlety";
repo = pname;
rev = "v${version}";
2022-04-10 21:54:19 +02:00
sha256 = "sha256-jXC2dENXuqicNQqTHyZKsjibDvjta/npQmf3+uivjX0=";
2021-12-05 16:46:00 +01:00
};
2022-03-29 19:59:06 +02:00
vendorSha256 = "sha256-UNeH3zxgssXxFpJws6nAL8EgXt0DRyAQfmlJWz/qyDg=";
2021-12-05 16:46:00 +01:00
meta = with lib; {
description =
"A 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 ];
};
}