diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2021-11-08 21:37:06 +0100 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2021-11-08 23:00:56 +0100 |
commit | 2a40b19953fabe5fef0caa9338b7bfe2dceec32c (patch) | |
tree | d21b6ef776708b512b8bfcd04577914dbff542c3 | |
parent | 41cb043a3ba61a71a0f9fd243a5ca45f55472997 (diff) | |
download | guix-2a40b19953fabe5fef0caa9338b7bfe2dceec32c.tar.gz guix-2a40b19953fabe5fef0caa9338b7bfe2dceec32c.zip |
gnu: patchage: Build with Python 3.
* gnu/packages/audio.scm (patchage)[arguments]: Run WAF with the default Python.
-rw-r--r-- | gnu/packages/audio.scm | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm index 62198ac7ce..4b1a602804 100644 --- a/gnu/packages/audio.scm +++ b/gnu/packages/audio.scm @@ -2851,8 +2851,7 @@ buffers, and audio capture.") "0gbakiw3mikgbvy3pssrmqmn7z5c7kp4vyaxj5rs4jnkscxgw9vw")))) (build-system waf-build-system) (arguments - `(#:tests? #f ; no check target - #:python ,python-2)) + `(#:tests? #f)) ; no check target (inputs `(("alsa-lib" ,alsa-lib) ("boost" ,boost) |