mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: ghc-tasty: Add missing dependency on i686-linux.
Fixes <https://issues.guix.gnu.org/63421>. * gnu/packages/haskell-check.scm (ghc-tasty)[inputs]: Conditionally add ghc-unbounded-delays.
This commit is contained in:
parent
d67a3622ef
commit
cf89a215ce
1 changed files with 7 additions and 1 deletions
|
@ -148,7 +148,13 @@ (define-public ghc-tasty
|
|||
"006bf4gyc30i2gvb17hj1mzrh1kwnwf7l050x3f72wi6c2axl87l"))))
|
||||
(build-system haskell-build-system)
|
||||
(properties '((upstream-name . "tasty")))
|
||||
(inputs (list ghc-tagged ghc-optparse-applicative ghc-ansi-terminal))
|
||||
(inputs
|
||||
(append
|
||||
(list ghc-tagged ghc-optparse-applicative ghc-ansi-terminal)
|
||||
;; TODO: Add ghc-unbounded-delays unconditionally on next rebuild cycle.
|
||||
(if (member (%current-system) '("i686-linux"))
|
||||
(list ghc-unbounded-delays)
|
||||
'())))
|
||||
(home-page "https://github.com/UnkindPartition/tasty")
|
||||
(synopsis "Modern and extensible testing framework")
|
||||
(description
|
||||
|
|
Loading…
Reference in a new issue