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>
		
			
				
	
	
		
			28 lines
		
	
	
		
			656 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			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";
 | 
						|
  };
 | 
						|
}
 |