about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/tools/lazygit/default.nix
blob: d142078c50fa6deb47ef63805b9c920d7525234b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{ stdenv, buildGoPackage, fetchFromGitHub }:

buildGoPackage rec {
  name = "lazygit-${version}";
  version = "0.7.2";

  goPackagePath = "github.com/jesseduffield/lazygit";

  src = fetchFromGitHub {
    owner = "jesseduffield";
    repo = "lazygit";
    rev = "v${version}";
    sha256 = "1b5mzmxw715cx7b0n22hvrpk0dbavzypljc7skwmh8k1nlx935jj";
  };

  postPatch = ''
    rm -rf scripts
  '';

  meta = with stdenv.lib; {
    inherit (src.meta) homepage;
    description = "Simple terminal UI for git commands";
    license = licenses.mit;
    maintainers = with stdenv.lib.maintainers; [ fpletz ];
    platforms = stdenv.lib.platforms.unix;
  };
}