mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
gnu: commencement: Simplify ‘grep-final’ definition.
* gnu/packages/commencement.scm (grep-final): Remove unneeded ‘substitute-keyword-arguments’. Change-Id: I4076c4e6d51bd408f6c68a2eb508855698330972
This commit is contained in:
parent
02e43504b3
commit
cbcc06b1d7
1 changed files with 4 additions and 6 deletions
|
@ -3422,12 +3422,10 @@ (define grep-final
|
||||||
;; built before gzip.
|
;; built before gzip.
|
||||||
(let ((grep (with-boot5 (package-with-bootstrap-guile grep))))
|
(let ((grep (with-boot5 (package-with-bootstrap-guile grep))))
|
||||||
(package/inherit grep
|
(package/inherit grep
|
||||||
(arguments (substitute-keyword-arguments
|
(arguments (strip-keyword-arguments '(#:configure-flags)
|
||||||
(strip-keyword-arguments
|
(package-arguments grep)))
|
||||||
'(#:configure-flags)
|
(inputs (alist-delete "pcre2" (package-inputs grep)))
|
||||||
(package-arguments grep))))
|
(native-inputs `(("perl" ,perl-boot0))))))
|
||||||
(inputs (alist-delete "pcre2" (package-inputs grep)))
|
|
||||||
(native-inputs `(("perl" ,perl-boot0))))))
|
|
||||||
|
|
||||||
(define xz-final
|
(define xz-final
|
||||||
;; The final xz. We need to replace the bootstrap xz with a newer one
|
;; The final xz. We need to replace the bootstrap xz with a newer one
|
||||||
|
|
Loading…
Reference in a new issue