diff options
| -rw-r--r-- | gnu/packages/audio.scm | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm index 5f7ec05d19..990e536953 100644 --- a/gnu/packages/audio.scm +++ b/gnu/packages/audio.scm @@ -54,6 +54,7 @@ ;;; Copyright © 2025 Sughosha <sughosha@disroot.org> ;;; Copyright © 2025 Andrew Wong <wongandj@icloud.com> ;;; Copyright © 2025 Kjartan Oli Agustsson <kjartanoli@outlook.com> +;;; Copyright © 2024 Janneke Nieuwenhuizen <janneke@gnu.org> ;;; ;;; This file is part of GNU Guix. ;;; @@ -3000,13 +3001,14 @@ especially for creating reverb effects. It supports impulse responses with 1, (base32 "0i6l25dmfk2ji2lrakqq9icnwjxklgcjzzk65dmsff91z2zva5rm")))) (build-system gnu-build-system) (arguments - `(#:phases (modify-phases %standard-phases + `(#:configure-flags + '("CFLAGS=-g -O2 -Wno-error=incompatible-pointer-types") + #:phases (modify-phases %standard-phases (add-after 'unpack 'patch-configure (lambda _ (substitute* "configure" ;; Install to <out/lib> regardless of platform. - (("libnn=lib64") "libnn=lib")) - #t))))) + (("libnn=lib64") "libnn=lib"))))))) (inputs (list alsa-lib readline)) ;; uuid.h is included in the JACK type headers |
