nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at 20.03 24 lines 611 B view raw
1{ stdenv, buildGoPackage, fetchFromGitHub }: 2 3buildGoPackage rec { 4 pname = "lazygit"; 5 version = "0.14.2"; 6 7 goPackagePath = "github.com/jesseduffield/lazygit"; 8 9 subPackages = [ "." ]; 10 11 src = fetchFromGitHub { 12 owner = "jesseduffield"; 13 repo = pname; 14 rev = "v${version}"; 15 sha256 = "001j663l851lg59rjjkpf915rsr9c9lm1vynzw05rfwszicgkdaa"; 16 }; 17 18 meta = with stdenv.lib; { 19 description = "Simple terminal UI for git commands"; 20 homepage = "https://github.com/jesseduffield/lazygit"; 21 license = licenses.mit; 22 maintainers = with maintainers; [ fpletz equirosa filalex77 ]; 23 }; 24}