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: f09d7434099d
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 158cfa6b2bfc
Choose a head ref
  • 3 commits
  • 2 files changed
  • 2 contributors

Commits on Jun 12, 2020

  1. gitAndTools.gh: add github-cli alias

    (cherry picked from commit d332426)
    zowoq committed Jun 12, 2020
    Copy the full SHA
    f5e3447 View commit details
  2. Copy the full SHA
    10ceb8f View commit details
  3. Merge pull request #90167 from zowoq/backport-gh

    [20.03] gitAndTools.gh: 0.9.0 -> 0.10.0
    marsam authored Jun 12, 2020

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    158cfa6 View commit details
Showing with 5 additions and 3 deletions.
  1. +3 −3 pkgs/applications/version-management/git-and-tools/gh/default.nix
  2. +2 −0 pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
@@ -2,16 +2,16 @@

buildGoModule rec {
pname = "gh";
version = "0.9.0";
version = "0.10.0";

src = fetchFromGitHub {
owner = "cli";
repo = "cli";
rev = "v${version}";
sha256 = "050wqjng0l42ilaiglwm1mzrrmnk0bg9icnzq9sm88axgl4xpmdy";
sha256 = "0m4qgvhd4fzl83acfbpwff0sqshyfhqiy5q4i7ly8h6rdsjysdck";
};

modSha256 = "0v33x9bnwjfg4425vralnsb4i22c0g1rcmaga9911v0i7d51k0fn";
modSha256 = "1cw3l6zka4mnis6zd0gc3zspw22b7vkdlcfskmgw1m1207jcscmz";

nativeBuildInputs = [ installShellFiles ];

2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
@@ -19382,6 +19382,8 @@ in

git-review = callPackage ../applications/version-management/git-review { };

github-cli = gitAndTools.gh;

gitolite = callPackage ../applications/version-management/gitolite { };

inherit (gnome3) gitg;