gnu: fzy: Use Gexps.
* gnu/packages/shellutils.scm (fzy)[arguments]: Use Gexps. Change-Id: Ic9e929ce3e85ec07f44ae7f8597a02a64edd5bf5 Signed-off-by: Mathieu Othacehe <othacehe@gnu.org>master
parent
2bf5102aac
commit
dc5f25cea6
|
@ -17,6 +17,7 @@
|
||||||
;;; Copyright © 2022 Jose G Perez Taveras <josegpt27@gmail.com>
|
;;; Copyright © 2022 Jose G Perez Taveras <josegpt27@gmail.com>
|
||||||
;;; Copyright © 2023 Timo Wilken <guix@twilken.net>
|
;;; Copyright © 2023 Timo Wilken <guix@twilken.net>
|
||||||
;;; Copyright © 2023 Camilo Q.S. (Distopico) <distopico@riseup.net>
|
;;; Copyright © 2023 Camilo Q.S. (Distopico) <distopico@riseup.net>
|
||||||
|
;;; Copyright © 2023 Zheng Junjie <873216071@qq.com>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -552,10 +553,11 @@ environment variables of the current shell.")
|
||||||
"1gkzdvj73f71388jvym47075l9zw61v6l8wdv2lnc0mns6dxig0k"))))
|
"1gkzdvj73f71388jvym47075l9zw61v6l8wdv2lnc0mns6dxig0k"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
'(#:make-flags (list "CC=gcc"
|
(list #:make-flags
|
||||||
(string-append "PREFIX=" (assoc-ref %outputs "out")))
|
#~(list "CC=gcc"
|
||||||
|
(string-append "PREFIX=" #$output))
|
||||||
#:phases
|
#:phases
|
||||||
(modify-phases %standard-phases
|
#~(modify-phases %standard-phases
|
||||||
(delete 'configure))))
|
(delete 'configure))))
|
||||||
(home-page "https://github.com/jhawthorn/fzy")
|
(home-page "https://github.com/jhawthorn/fzy")
|
||||||
(synopsis "Fast fuzzy text selector for the terminal with an advanced
|
(synopsis "Fast fuzzy text selector for the terminal with an advanced
|
||||||
|
|
Reference in New Issue