mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-25 20:19:18 -05:00
gnu: tls: Remove datefudge and disable tests on the Hurd.
* gnu/packages/tls.scm (gnutls)[arguments]: When compiling for the Hurd, disable tests. [native-inputs]: When compiling for the Hurd, do not include datefudge.
This commit is contained in:
parent
eaff60b35f
commit
2d49f17512
1 changed files with 4 additions and 2 deletions
|
@ -181,7 +181,8 @@ (define-public gnutls
|
|||
"0jvca1qahn9lrwv6f5kfs95icirc15b2a8x9fzczyj996ipg3b5z"))))
|
||||
(build-system gnu-build-system)
|
||||
(arguments
|
||||
`(; Ensure we don't keep a reference to this buggy software.
|
||||
`(,@(if (hurd-target?) '(#:tests? #f) '())
|
||||
; Ensure we don't keep a reference to this buggy software.
|
||||
#:disallowed-references (,net-tools)
|
||||
#:configure-flags
|
||||
(list
|
||||
|
@ -230,7 +231,8 @@ (define-public gnutls
|
|||
`(("net-tools" ,net-tools)))
|
||||
("pkg-config" ,pkg-config)
|
||||
("which" ,which)
|
||||
("datefudge" ,datefudge) ;tests rely on 'datefudge'
|
||||
,@(if (hurd-target?) '()
|
||||
`(("datefudge" ,datefudge))) ;tests rely on 'datefudge'
|
||||
("util-linux" ,util-linux))) ;one test needs 'setsid'
|
||||
(inputs
|
||||
`(("guile" ,guile-3.0)))
|
||||
|
|
Loading…
Reference in a new issue