From 1b8f49c8a90f78b55dc80a5bc2ea62a13fcc36e5 Mon Sep 17 00:00:00 2001 From: "Collin J. Doering" Date: Sat, 26 Dec 2020 23:21:36 -0500 Subject: [PATCH] rekahsoft-gnu/packages/shellutils.scm: Update fzf --- rekahsoft-gnu/packages/shellutils.scm | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/rekahsoft-gnu/packages/shellutils.scm b/rekahsoft-gnu/packages/shellutils.scm index 2391697..9efa471 100644 --- a/rekahsoft-gnu/packages/shellutils.scm +++ b/rekahsoft-gnu/packages/shellutils.scm @@ -40,30 +40,36 @@ (define-public fzf (package (name "fzf") - (version "0.18.0") + (version "0.24.4") (source (origin (method git-fetch) (uri (git-reference - (url "https://github.com/junegunn/fzf.git") + (url "https://github.com/junegunn/fzf") (commit version))) (file-name (git-file-name name version)) (sha256 (base32 - "0pwpr4fpw56yzzkcabzzgbgwraaxmp7xzzmap7w1xsrkbj7dl2xl")))) + "17k32wr70sp7ag69xww2q9mrgnzakgkjw6la04n3jlhfa5z37dzj")))) (build-system go-build-system) (native-inputs `(("github.com/mattn/go-isatty" ,go-github-com-mattn-go-isatty) ("github.com/mattn/go-runewidth" ,go-github-com-mattn-go-runewidth) ("github.com/mattn/go-shellwords" ,go-github-com-mattn-go-shellwords) ("go-golang-org-x-crypto" ,go-golang-org-x-crypto) - ("go-golang-org-x-sys" ,go-golang-org-x-sys))) + ("go-golang-org-x-sys" ,go-golang-org-x-sys) + ("go-github-com-saracen-walker" ,go-github-com-saracen-walker) + ("go-golang.org-x-sync-errgroup" ,go-golang.org-x-sync-errgroup))) (propagated-inputs `(("tmux" ,tmux))) (arguments - '(#:import-path "github.com/junegunn/fzf" + `(#:import-path "github.com/junegunn/fzf" #:install-source? #f #:phases (modify-phases %standard-phases + (add-before 'build 'setup-env + (lambda _ + (setenv "FZF_VERSION" ,version) + (setenv "FZF_REVISION" ,version))) (replace 'build (lambda _ (with-directory-excursion "src/github.com/junegunn/fzf"