gnu: wslay: Fix build.
* gnu/packages/web.scm (wslay)[arguments]: Don't build in parallel.master
parent
85ced6651f
commit
90d192b2f7
|
@ -1163,10 +1163,13 @@ high performance.")
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "0ak9a6hsanhys40yhv7c2gqkfghpm6jx36j1pnml8ajvgaky5q98"))))
|
(base32 "0ak9a6hsanhys40yhv7c2gqkfghpm6jx36j1pnml8ajvgaky5q98"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
|
(arguments
|
||||||
|
;; Parallel builds don't reliably succeed.
|
||||||
|
`(#:parallel-build? #f))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("autoconf" ,autoconf)
|
`(("autoconf" ,autoconf)
|
||||||
("automake" ,automake)
|
("automake" ,automake)
|
||||||
("cunit" ,cunit) ; For tests.
|
("cunit" ,cunit) ; for tests
|
||||||
("libtool" ,libtool)
|
("libtool" ,libtool)
|
||||||
("pkg-config" ,pkg-config)
|
("pkg-config" ,pkg-config)
|
||||||
("python-sphinx" ,python-sphinx)))
|
("python-sphinx" ,python-sphinx)))
|
||||||
|
|
Reference in New Issue