diff options
author | Ludovic Courtès <ludo@gnu.org> | 2015-12-15 18:03:29 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2015-12-15 18:04:28 +0100 |
commit | 304e4f513580ed0f141f5ea6ae8289b4476e2ab0 (patch) | |
tree | a1abb880f3d793c087e2f2ccdaa309a4d63d8170 /gnu/packages/commencement.scm | |
parent | a2a9bba43cbc32efe6a654455d1789c6964dfbc5 (diff) | |
download | gnu-guix-304e4f513580ed0f141f5ea6ae8289b4476e2ab0.tar gnu-guix-304e4f513580ed0f141f5ea6ae8289b4476e2ab0.tar.gz |
gnu: grep: Add missing dependency on Perl.
* gnu/packages/base.scm (grep)[native-inputs]: New field.
* gnu/packages/commencement.scm (grep-final): Likewise.
Diffstat (limited to 'gnu/packages/commencement.scm')
-rw-r--r-- | gnu/packages/commencement.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/packages/commencement.scm b/gnu/packages/commencement.scm index 116ca7c647..8aa32e859d 100644 --- a/gnu/packages/commencement.scm +++ b/gnu/packages/commencement.scm @@ -728,7 +728,9 @@ exec ~a/bin/~a-~a -B~a/lib -Wl,-dynamic-linker -Wl,~a/~a \"$@\"~%" ;; The final grep. Gzip holds a reference to it (via zgrep), so it must be ;; built before gzip. (package-with-bootstrap-guile - (package-with-explicit-inputs grep + (package-with-explicit-inputs (package + (inherit grep) + (native-inputs `(("perl" ,perl-boot0)))) %boot5-inputs (current-source-location) #:guile guile-final))) |