gnu: cups: Don't set #:tests? to #:true.

* gnu/packages/cups.scm (cups)[arguments]: Rewrite to strip the #:tests?
argument from the inherited package.
This commit is contained in:
Efraim Flashner 2023-07-09 10:40:02 +03:00
parent 3ff615263c
commit 241c8da50d
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -354,9 +354,10 @@ (define-public cups
(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(!)