Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: a3c8a81e2da3
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 6c4b12898560
Choose a head ref
  • 3 commits
  • 1 file changed
  • 2 contributors

Commits on Jan 8, 2020

  1. lazygit: 0.11.3 -> 0.12.3

    Br1ght0ne committed Jan 8, 2020

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    8694670 View commit details
  2. Copy the full SHA
    8236451 View commit details
  3. Merge pull request #77322 from filalex77/lazygit-0.12.3

    lazygit: 0.11.3 -> 0.12.3
    fpletz authored Jan 8, 2020
    Copy the full SHA
    6c4b128 View commit details
Showing with 3 additions and 3 deletions.
  1. +3 −3 pkgs/development/tools/lazygit/default.nix
6 changes: 3 additions & 3 deletions pkgs/development/tools/lazygit/default.nix
Original file line number Diff line number Diff line change
@@ -2,7 +2,7 @@

buildGoPackage rec {
pname = "lazygit";
version = "0.11.3";
version = "0.12.3";

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

@@ -12,13 +12,13 @@ buildGoPackage rec {
owner = "jesseduffield";
repo = pname;
rev = "v${version}";
sha256 = "0v765f93hkq94bmzfwkkb9ndbfka415sxyi01679fg860746rl6l";
sha256 = "1r20543dydp5m9ciw01y8wlw8kxwmjn6zabfalnb13y1pa0zm76q";
};

meta = with stdenv.lib; {
description = "Simple terminal UI for git commands";
homepage = "https://github.com/jesseduffield/lazygit";
license = licenses.mit;
maintainers = with maintainers; [ fpletz equirosa ];
maintainers = with maintainers; [ fpletz equirosa filalex77 ];
};
}