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: 77d90b87c442
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: dd3238c002f5
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Jan 19, 2021

  1. Verified

    This commit was signed with the committer’s verified signature. The key has expired.
    angerman Moritz Angermann
    Copy the full SHA
    dd3238c View commit details
Showing with 5 additions and 5 deletions.
  1. +5 −5 pkgs/development/tools/yq-go/default.nix
10 changes: 5 additions & 5 deletions pkgs/development/tools/yq-go/default.nix
Original file line number Diff line number Diff line change
@@ -2,24 +2,24 @@

buildGoModule rec {
pname = "yq-go";
version = "3.4.1";
version = "4.4.1";

src = fetchFromGitHub {
owner = "mikefarah";
rev = version;
rev = "v${version}";
repo = "yq";
sha256 = "09kcqa15assjhp3kdffa3yhc2vykinzgscjzg996qa85kjircy9b";
sha256 = "sha256-U1nMSwWKzPvyvxUx8J50AMB251ET4s9xcSrjGGjkYus=";
};

vendorSha256 = "0l5bhbp8dfq04hb4xcpx96ksfwx4xvk0pj5ma00rk3z913ikygcd";
vendorSha256 = "sha256-CUELy6ajaoVzomY5lMen24DFJke3IyFzqWYyF7sws5g=";

doCheck = false;

nativeBuildInputs = [ installShellFiles ];

postInstall = ''
for shell in bash fish zsh; do
$out/bin/yq shell-completion --variation $shell > yq.$shell
$out/bin/yq shell-completion $shell > yq.$shell
installShellCompletion yq.$shell
done
'';