Skip to content
This repository was archived by the owner on Apr 12, 2021. It is now read-only.
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-channels
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 6b11dbe9672a
Choose a base ref
...
head repository: NixOS/nixpkgs-channels
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 21d8e70a69f7
Choose a head ref
  • 4 commits
  • 1 file changed
  • 1 contributor

Commits on Sep 20, 2020

  1. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature.
    Copy the full SHA
    5289f22 View commit details
  2. fzf: 0.21.0 -> 0.21.0-1

    (cherry picked from commit 179aa6e)
    zowoq committed Sep 20, 2020
    Copy the full SHA
    f3e3199 View commit details
  3. Copy the full SHA
    a0b222c View commit details
  4. Copy the full SHA
    21d8e70 View commit details
Showing with 4 additions and 4 deletions.
  1. +4 −4 pkgs/tools/misc/fzf/default.nix
8 changes: 4 additions & 4 deletions pkgs/tools/misc/fzf/default.nix
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
{ lib, buildGoModule, fetchFromGitHub, writeText, runtimeShell, ncurses, }:
{ lib, buildGoModule, fetchFromGitHub, writeText, runtimeShell, ncurses }:

buildGoModule rec {
pname = "fzf";
version = "0.20.0";
version = "0.22.0";

src = fetchFromGitHub {
owner = "junegunn";
repo = pname;
rev = version;
sha256 = "02zy3c4k84rzqdkaf04idbj10v286hi0ix1xl2qsz1wrblh168w8";
sha256 = "0n0cy5q2r3dm1a3ivlzrv9c5d11awxlqim5b9x8zc85dlr73n35l";
};

modSha256 = "12lnv8b96adpcg9qfizcyd9nxz590nxd82xch6ij719zlqyps143";
vendorSha256 = "1c2iz28hjrw9rig9a6r27wd8clycdhi8fgs3da91c63w4qi140zm";

outputs = [ "out" "man" ];