mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-19 05:57:04 +01:00
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:
parent
3ff615263c
commit
241c8da50d
1 changed files with 4 additions and 3 deletions
|
@ -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(!)
|
||||
|
|
Loading…
Reference in a new issue