efraim pushed a commit to branch master
in repository guix.
commit 241c8da50de2895637b5b41370fb75ee9df32955
Author: Efraim Flashner <[email protected]>
AuthorDate: Sun Jul 9 10:40:02 2023 +0300
gnu: cups: Don't set #:tests? to #:true.
* gnu/packages/cups.scm (cups)[arguments]: Rewrite to strip the #:tests?
argument from the inherited package.
---
gnu/packages/cups.scm | 7 ++++---
1 file changed, 4 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/cups.scm b/gnu/packages/cups.scm
index 74f7875f69..93b9ab66b2 100644
--- a/gnu/packages/cups.scm
+++ b/gnu/packages/cups.scm
@@ -354,9 +354,10 @@ applications''. These must be installed separately.")
(package/inherit cups-minimal
(name "cups")
(arguments
- (substitute-keyword-arguments (package-arguments cups-minimal)
- ((#:tests? _ #t)
- #t)
+ (substitute-keyword-arguments
+ (strip-keyword-arguments
+ '(#:tests?)
+ (package-arguments cups-minimal))
((#:configure-flags flags #~'())
#~(append #$flags
(list "--with-languages=all"))) ; no ‘=all’ means none(!)