rekahsoft-gnu/packages/shellutils.scm: Update fzf

This commit is contained in:
Collin J. Doering 2020-12-26 23:21:36 -05:00
parent 6c9f2b1c8b
commit 1b8f49c8a9
Signed by: rekahsoft
GPG Key ID: 7B4DEB93212B3022
1 changed files with 11 additions and 5 deletions

View File

@ -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"