diff options
author | zimoun <zimon.toutoune@gmail.com> | 2020-05-03 17:01:54 +0200 |
---|---|---|
committer | Guix Patches Tester <> | 2020-05-03 16:06:11 +0100 |
commit | 20f6ec3ef2444c5b55410dadb25a4c1af376905a (patch) | |
tree | 17605188d7abf294ac8327b7d6dd97d794b3d709 | |
parent | b333c77da7fb4dae4059d0acdddd5938128d0c2e (diff) | |
download | patches-series-3832.tar patches-series-3832.tar.gz |
DRAFT guix package: Use cache in 'find-packages-by-description'.series-3832
-rw-r--r-- | guix/scripts/package.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guix/scripts/package.scm b/guix/scripts/package.scm index 2eb18919cc..07e281a1c9 100644 --- a/guix/scripts/package.scm +++ b/guix/scripts/package.scm @@ -178,7 +178,7 @@ hooks\" run when building the profile." "Return a list of pairs: packages whose name, synopsis, description, or output matches at least one of REGEXPS sorted by relevance, and its non-zero relevance score." - (let ((matches (fold-packages (lambda (package result) + (let ((matches (fold-packages* (lambda (package result) (if (package-superseded package) result (match (package-relevance package |