mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 15:27:20 +03:00
Merge pull request #148349 from michzappa/f1viewer
f1viewer: init at 2.4.0
This commit is contained in:
commit
0cce1fedbe
@ -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";
|
||||
|
23
pkgs/applications/video/f1viewer/default.nix
Normal file
23
pkgs/applications/video/f1viewer/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user