summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkilianar <mail@kilianar.de>2022-07-21 16:17:52 +0200
committergithub-actions[bot] <github-actions[bot]@users.noreply.github.com>2022-07-22 22:27:58 +0000
commit1249b49b2d5b6b4265d105fdbca2f99d032d9917 (patch)
tree92c39717d16a1327acd6e5bac3bd0c96a1201289
parentMerge pull request #182509 from NixOS/backport-182458-to-release-22.05 (diff)
downloadnixpkgs-origin/backport-182343-to-release-22.05.tar.gz
https://github.com/junegunn/fzf/releases/tag/0.31.0 (cherry picked from commit ab6b6091d0a124eb94038fc5fdff566ee09d2663)
-rw-r--r--pkgs/tools/misc/fzf/default.nix8
1 files changed, 3 insertions, 5 deletions
diff --git a/pkgs/tools/misc/fzf/default.nix b/pkgs/tools/misc/fzf/default.nix
index 5195af2774f1..c5131b8a11e5 100644
--- a/pkgs/tools/misc/fzf/default.nix
+++ b/pkgs/tools/misc/fzf/default.nix
@@ -2,16 +2,16 @@
buildGoModule rec {
pname = "fzf";
- version = "0.30.0";
+ version = "0.31.0";
src = fetchFromGitHub {
owner = "junegunn";
repo = pname;
rev = version;
- sha256 = "sha256-7E6fj/Sjew+zz+iMFkiSJjVn2rymKRvZtEJZH65INxk=";
+ sha256 = "sha256-HKwf/ogNx+jCNSVHI8rt6WYRbuyT18V4nnMyZ6TmwVQ=";
};
- vendorSha256 = "sha256-omvCzM5kH3nAE57S33NV0OFRJmU+Ty7hhriaG/Dc0o0=";
+ vendorSha256 = "sha256-3ry93xV3KKtFoFGt2yxzMd4jx3QG2+8TBrEEywj7HPQ=";
outputs = [ "out" "man" ];
@@ -34,8 +34,6 @@ buildGoModule rec {
# Has a sneaky dependency on perl
# Include first args to make sure we're patching the right thing
- substituteInPlace shell/key-bindings.zsh \
- --replace " perl -ne " " ${perl}/bin/perl -ne "
substituteInPlace shell/key-bindings.bash \
--replace " perl -n " " ${perl}/bin/perl -n "
'';