diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2023-07-09 10:40:02 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2023-07-09 10:43:03 +0300 |
commit | 241c8da50de2895637b5b41370fb75ee9df32955 (patch) | |
tree | 8981197db821d5b2a0023144097c9282a36e903c /gnu/packages/cups.scm | |
parent | 3ff615263c0105510ba74dae8541a28cad91499f (diff) | |
download | guix-241c8da50de2895637b5b41370fb75ee9df32955.tar.gz |
gnu: cups: Don't set #:tests? to #:true.
* gnu/packages/cups.scm (cups)[arguments]: Rewrite to strip the #:tests? argument from the inherited package.
Diffstat (limited to 'gnu/packages/cups.scm')
-rw-r--r-- | gnu/packages/cups.scm | 7 |
1 files 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(!) |