Merge pull request #148349 from michzappa/f1viewer

f1viewer: init at 2.4.0
This commit is contained in:
Robert Schütz 2021-12-07 15:41:30 -08:00 committed by GitHub
commit 0cce1fedbe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 31 additions and 0 deletions

View File

@ -7675,6 +7675,12 @@
githubId = 21156022;
name = "Michal Minář";
};
michzappa = {
email = "me@michzappa.com";
github = "michzappa";
githubId = 59343378;
name = "Michael Zappa";
};
mickours = {
email = "mickours@gmail.com<";
github = "mickours";

View File

@ -0,0 +1,23 @@
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "f1viewer";
version = "2.4.0";
src = fetchFromGitHub {
owner = "SoMuchForSubtlety";
repo = pname;
rev = "v${version}";
sha256 = "7eXRUG74l9+9nU7EmDvNcHc+2pg5+/amjqtrzT60f94=";
};
vendorSha256 = "4pQ8NT0mh3w7naHEHh2w6Csop0uitlWClZ95VlYaPW0=";
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 ];
};
}

View File

@ -24946,6 +24946,8 @@ with pkgs;
exrtools = callPackage ../applications/graphics/exrtools { };
f1viewer = callPackage ../applications/video/f1viewer {};
fasttext = callPackage ../applications/science/machine-learning/fasttext { };
fbmenugen = callPackage ../applications/misc/fbmenugen { };