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: 44a502bf6d9c
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: ffc0e67742b5
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Apr 22, 2020

  1. Copy the full SHA
    f7b9c6c View commit details

Commits on Apr 23, 2020

  1. Merge pull request #85821 from zowoq/gh

    gitAndTools.gh: 0.6.4 -> 0.7.0
    marsam authored Apr 23, 2020
    Copy the full SHA
    ffc0e67 View commit details
Showing with 4 additions and 4 deletions.
  1. +4 −4 pkgs/applications/version-management/git-and-tools/gh/default.nix
Original file line number Diff line number Diff line change
@@ -2,19 +2,19 @@

buildGoModule rec {
pname = "gh";
version = "0.6.4";
version = "0.7.0";

src = fetchFromGitHub {
owner = "cli";
repo = "cli";
rev = "v${version}";
sha256 = "0na8zfvcmdy968i47x6qd1jwfaphy5h18ff7ym5sxyia9a27yhf8";
sha256 = "054mag8jgxkvx2f95ha10n45v4xv5lms69w76g95z18m62qhjcyl";
};

modSha256 = "102v30wr9wmd6n20qdvgs5mp2s639pwbqqd71r8q52f42p694bi1";
modSha256 = "0v33x9bnwjfg4425vralnsb4i22c0g1rcmaga9911v0i7d51k0fn";

buildFlagsArray = [
"-ldflags=-X github.com/cli/cli/command.Version=${version}"
"-ldflags=-s -w -X github.com/cli/cli/command.Version=${version}"
];

subPackages = [ "cmd/gh" ];