mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-13 06:36:37 -05:00
gnu: gwl: Update to 0.5.1.
* gnu/packages/package-management.scm (gwl): Update to 0.5.1. [arguments]: Disable one test.
This commit is contained in:
parent
0d2ad7b7c0
commit
4df7db5955
1 changed files with 11 additions and 3 deletions
|
@ -1310,18 +1310,26 @@ (define system ,(or (%current-target-system)
|
||||||
(define-public gwl
|
(define-public gwl
|
||||||
(package
|
(package
|
||||||
(name "gwl")
|
(name "gwl")
|
||||||
(version "0.5.0")
|
(version "0.5.1")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "mirror://gnu/gwl/gwl-" version ".tar.gz"))
|
(uri (string-append "mirror://gnu/gwl/gwl-" version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"09r22gqgaj2mxvlwvfach5j1n66y3yggmzc6d2gxq7lyywbcvjvs"))))
|
"08h76ib7hmqyj354aazxqyz0galhywz4093f8hc4py7hbg0rcm27"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:parallel-build? #false ; for reproducibility
|
`(#:parallel-build? #false ; for reproducibility
|
||||||
#:make-flags
|
#:make-flags
|
||||||
'("GUILE_AUTO_COMPILE=0" "GWL_SKIP_INTEGRATION_TESTS=1")))
|
'("GUILE_AUTO_COMPILE=0" "GWL_SKIP_INTEGRATION_TESTS=1")
|
||||||
|
#:phases
|
||||||
|
(modify-phases %standard-phases
|
||||||
|
(add-after 'unpack 'disable-test
|
||||||
|
(lambda _
|
||||||
|
;; This test loads a workflow, which requires a working Guix installation.
|
||||||
|
(substitute* "tests/cache.scm"
|
||||||
|
(("\\(test-assert \"workflows with same file name have different cache prefixes\"" m)
|
||||||
|
(string-append "#;" m))))))))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list autoconf automake pkg-config texinfo graphviz))
|
(list autoconf automake pkg-config texinfo graphviz))
|
||||||
(inputs
|
(inputs
|
||||||
|
|
Loading…
Reference in a new issue