1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-20 09:10:30 +02:00

gnu: grep-final: Adjust for changes in grep.

* gnu/packages/commencement.scm (grep-final)[arguments]: Strip inherited
configure-flags.
[inputs]: Remove inherited pcre2, not pcre.

Change-Id: Ib912430712b3d4dfea4854e563e4efb4ae5e3e45
This commit is contained in:
Efraim Flashner
2023-11-28 21:15:57 +02:00
committed by Ludovic Courtès
parent b237c8717e
commit bbef137387

View File

@@ -3443,7 +3443,11 @@ exec ~a/bin/~a-~a -B~a/lib -Wl,-dynamic-linker -Wl,~a/~a \"$@\"~%"
;; built before gzip.
(let ((grep (with-boot5 (package-with-bootstrap-guile grep))))
(package/inherit grep
(inputs (alist-delete "pcre" (package-inputs grep)))
(arguments (substitute-keyword-arguments
(strip-keyword-arguments
'(#:configure-flags)
(package-arguments grep))))
(inputs (alist-delete "pcre2" (package-inputs grep)))
(native-inputs `(("perl" ,perl-boot0))))))
(define xz-final