gnu: libevent: Use Python 3 for event_rpcgen.py.
* gnu/packages/libevent.scm (libevent)[inputs]: Change PYTHON-2 to PYTHON-WRAPPER.
This commit is contained in:
parent
d7b63ba92d
commit
cf3f7aa197
|
@ -43,19 +43,19 @@
|
||||||
(name "libevent")
|
(name "libevent")
|
||||||
(version "2.1.10")
|
(version "2.1.10")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append
|
(uri (string-append
|
||||||
"https://github.com/libevent/libevent/releases/download/release-"
|
"https://github.com/libevent/libevent/releases/download/release-"
|
||||||
version "-stable/libevent-" version "-stable.tar.gz"))
|
version "-stable/libevent-" version "-stable.tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1c25928gdv495clxk2v1d4gkr5py7ack4gx2n7d13frnld0syr78"))))
|
"1c25928gdv495clxk2v1d4gkr5py7ack4gx2n7d13frnld0syr78"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
;; This skips some of the tests which fail on armhf and aarch64.
|
;; This skips some of the tests which fail on armhf and aarch64.
|
||||||
'(#:configure-flags '("--disable-libevent-regress")))
|
'(#:configure-flags '("--disable-libevent-regress")))
|
||||||
(inputs
|
(inputs
|
||||||
`(("python" ,python-2))) ; for 'event_rpcgen.py'
|
`(("python" ,python-wrapper))) ;for 'event_rpcgen.py'
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("which" ,which)))
|
`(("which" ,which)))
|
||||||
(home-page "https://libevent.org/")
|
(home-page "https://libevent.org/")
|
||||||
|
|
Loading…
Reference in New Issue