From 3ff615263c0105510ba74dae8541a28cad91499f Mon Sep 17 00:00:00 2001 From: Efraim Flashner Date: Sun, 9 Jul 2023 10:36:49 +0300 Subject: gnu: s7: Don't set #:tests? to #:true. * gnu/packages/lisp.scm (s7)[arguments]: Rewrite to strip the #:tests? argument from the inherited package. --- gnu/packages/lisp.scm | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'gnu') diff --git a/gnu/packages/lisp.scm b/gnu/packages/lisp.scm index a868b31ecf..37735020ad 100644 --- a/gnu/packages/lisp.scm +++ b/gnu/packages/lisp.scm @@ -6,7 +6,7 @@ ;;; Copyright © 2016, 2017 Nikita ;;; Copyright © 2016, 2017 Andy Patterson ;;; Copyright © 2017, 2019, 2020 Ricardo Wurmus -;;; Copyright © 2017-2019, 2022 Efraim Flashner +;;; Copyright © 2017-2019, 2022, 2023 Efraim Flashner ;;; Copyright © 2017, 2019–2022 Tobias Geerinckx-Rice ;;; Copyright © 2018 Benjamin Slade ;;; Copyright © 2018 Alex Vong @@ -1315,7 +1315,7 @@ (define (wrap-carp-program program) (dirname (search-input-file inputs "include/stdlib.h")))))) - + (for-each wrap-carp-program (list "carp" "carp-header-parse"))))))) @@ -1587,8 +1587,10 @@ (define-public s7 (inherit s7-bootstrap) (name "s7") (arguments - (substitute-keyword-arguments (package-arguments s7-bootstrap) - ((#:tests? _) #t) + (substitute-keyword-arguments + (strip-keyword-arguments + '(#:tests?) + (package-arguments s7-bootstrap)) ((#:phases phases) #~(modify-phases #$phases (add-after 'unpack 'patch -- cgit v1.2.3