zowoq 2023-05-27 18:02:10 +10:00
parent 0ba51a51f8
commit e1e943023f

View file

@ -10,6 +10,7 @@
, glibcLocales , glibcLocales
, testers , testers
, fzf , fzf
, fetchpatch
}: }:
let let
@ -24,15 +25,23 @@ let
in in
buildGoModule rec { buildGoModule rec {
pname = "fzf"; pname = "fzf";
version = "0.41.0"; version = "0.41.1";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "junegunn"; owner = "junegunn";
repo = pname; repo = pname;
rev = version; rev = version;
hash = "sha256-NUaGuRfXtt/kY4u5uxM30Blg+ngkcvS2/2rcGP/WNtE="; hash = "sha256-YnWc+yStyoZoCKxEMhQC6Z4FZ/OVRaVsAJPtAzGiJVk=";
}; };
patches = [
(fetchpatch {
name = "update-test-case.patch";
url = "https://github.com/junegunn/fzf/commit/448d7e0c5a717128d499f6a09a978b7addd1d925.patch";
hash = "sha256-54UYW8x78ZcjPwDWmGLVLxw2E910wme2TkBN7YAr1L8=";
})
];
vendorHash = "sha256-O6OjBbrVAxDQd27ar2mmFkU1XyVM2C8SJWJ54rgaf2s="; vendorHash = "sha256-O6OjBbrVAxDQd27ar2mmFkU1XyVM2C8SJWJ54rgaf2s=";
outputs = [ "out" "man" ]; outputs = [ "out" "man" ];