mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: s7: Don't set #:tests? to #:true.
* gnu/packages/lisp.scm (s7)[arguments]: Rewrite to strip the #:tests? argument from the inherited package.
This commit is contained in:
parent
bc702a07c5
commit
3ff615263c
1 changed files with 6 additions and 4 deletions
|
@ -6,7 +6,7 @@
|
|||
;;; Copyright © 2016, 2017 Nikita <nikita@n0.is>
|
||||
;;; Copyright © 2016, 2017 Andy Patterson <ajpatter@uwaterloo.ca>
|
||||
;;; Copyright © 2017, 2019, 2020 Ricardo Wurmus <rekado@elephly.net>
|
||||
;;; Copyright © 2017-2019, 2022 Efraim Flashner <efraim@flashner.co.il>
|
||||
;;; Copyright © 2017-2019, 2022, 2023 Efraim Flashner <efraim@flashner.co.il>
|
||||
;;; Copyright © 2017, 2019–2022 Tobias Geerinckx-Rice <me@tobias.gr>
|
||||
;;; Copyright © 2018 Benjamin Slade <slade@jnanam.net>
|
||||
;;; Copyright © 2018 Alex Vong <alexvong1995@gmail.com>
|
||||
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue