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:
Ludovic Courtès 2024-08-18 17:30:15 +02:00
parent 02e43504b3
commit cbcc06b1d7
No known key found for this signature in database
GPG key ID: 090B11993D9AEBB5

View file

@ -3422,10 +3422,8 @@ (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)
(package-arguments grep))))
(inputs (alist-delete "pcre2" (package-inputs grep))) (inputs (alist-delete "pcre2" (package-inputs grep)))
(native-inputs `(("perl" ,perl-boot0)))))) (native-inputs `(("perl" ,perl-boot0))))))