diff options
author | Marius Bakke <mbakke@fastmail.com> | 2019-07-07 17:02:20 +0200 |
---|---|---|
committer | Marius Bakke <mbakke@fastmail.com> | 2019-07-07 18:38:18 +0200 |
commit | cf3f7aa1970d71c69ec2c75c4ae874afc1d1fdab (patch) | |
tree | 458fdbe59ba2952311e221b13bbda26c450b7aca /gnu | |
parent | d7b63ba92d55549006f6aa7f78adc4c37d98fc41 (diff) | |
download | patches-cf3f7aa1970d71c69ec2c75c4ae874afc1d1fdab.tar patches-cf3f7aa1970d71c69ec2c75c4ae874afc1d1fdab.tar.gz |
gnu: libevent: Use Python 3 for event_rpcgen.py.
* gnu/packages/libevent.scm (libevent)[inputs]: Change PYTHON-2 to PYTHON-WRAPPER.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/libevent.scm | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/gnu/packages/libevent.scm b/gnu/packages/libevent.scm index e9e165a2ad..58c451a4e9 100644 --- a/gnu/packages/libevent.scm +++ b/gnu/packages/libevent.scm @@ -43,19 +43,19 @@ (name "libevent") (version "2.1.10") (source (origin - (method url-fetch) - (uri (string-append - "https://github.com/libevent/libevent/releases/download/release-" - version "-stable/libevent-" version "-stable.tar.gz")) - (sha256 - (base32 - "1c25928gdv495clxk2v1d4gkr5py7ack4gx2n7d13frnld0syr78")))) + (method url-fetch) + (uri (string-append + "https://github.com/libevent/libevent/releases/download/release-" + version "-stable/libevent-" version "-stable.tar.gz")) + (sha256 + (base32 + "1c25928gdv495clxk2v1d4gkr5py7ack4gx2n7d13frnld0syr78")))) (build-system gnu-build-system) (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"))) (inputs - `(("python" ,python-2))) ; for 'event_rpcgen.py' + `(("python" ,python-wrapper))) ;for 'event_rpcgen.py' (native-inputs `(("which" ,which))) (home-page "https://libevent.org/") |