mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-26 20:49:29 -05:00
gnu: easyeffects: Update to 7.1.7.
* gnu/packages/audio.scm (easyeffects): Update to 7.1.7. [native-inputs]: Add gcc-12 and soundtouch, remove speex. [propagated-inputs]: Remove rubberband, add ladspa and change to the lv2 output of lsp-plugins. Signed-off-by: Christopher Baines <mail@cbaines.net> Change-Id: Iebd74f52dd4eae94f2dbdf7f5148e8d062b75807
This commit is contained in:
parent
0e0ff7dce8
commit
e936d8a1d8
1 changed files with 11 additions and 9 deletions
|
@ -48,6 +48,7 @@
|
||||||
;;; Copyright © 2023 Parnikkapore <poomklao@yahoo.com>
|
;;; Copyright © 2023 Parnikkapore <poomklao@yahoo.com>
|
||||||
;;; Copyright © 2024 hapster <o.rojon@posteo.net>
|
;;; Copyright © 2024 hapster <o.rojon@posteo.net>
|
||||||
;;; Copyright © 2024 mio <stigma@disroot.org>
|
;;; Copyright © 2024 mio <stigma@disroot.org>
|
||||||
|
;;; Copyright © 2024 Nikita Domnitskii <nikita@domnitskii.me>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -6573,7 +6574,7 @@ (define-public cyanrip
|
||||||
(define-public easyeffects
|
(define-public easyeffects
|
||||||
(package
|
(package
|
||||||
(name "easyeffects")
|
(name "easyeffects")
|
||||||
(version "7.0.1") ; later version require gtk 4.10
|
(version "7.1.7")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
(uri (git-reference
|
(uri (git-reference
|
||||||
|
@ -6581,10 +6582,11 @@ (define-public easyeffects
|
||||||
(commit (string-append "v" version))))
|
(commit (string-append "v" version))))
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "0c49yd4dfh7qarq5h651dgxdbs71is4pp1sl8r0gfswqji6bv39w"))))
|
(base32 "19r8pzlhdn7jp7lggxv3c74xbr48hwmz234rl600fnqhygpixg6b"))))
|
||||||
(build-system meson-build-system)
|
(build-system meson-build-system)
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list `(,glib "bin") ;for glib-compile-resources
|
(list `(,glib "bin") ;for glib-compile-resources
|
||||||
|
gcc-12 ; fails to build with gcc-11
|
||||||
gettext-minimal
|
gettext-minimal
|
||||||
itstool
|
itstool
|
||||||
pkg-config))
|
pkg-config))
|
||||||
|
@ -6605,19 +6607,19 @@ (define-public easyeffects
|
||||||
pango
|
pango
|
||||||
pipewire
|
pipewire
|
||||||
rnnoise
|
rnnoise
|
||||||
speex
|
|
||||||
speexdsp
|
speexdsp
|
||||||
tbb
|
tbb
|
||||||
zita-convolver))
|
zita-convolver
|
||||||
|
soundtouch))
|
||||||
;; Propagating these allows EasyEffects to find the plugins via their
|
;; Propagating these allows EasyEffects to find the plugins via their
|
||||||
;; search-path specification
|
;; search-path specification
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
(list calf
|
(list lv2
|
||||||
lsp-plugins
|
calf
|
||||||
lv2
|
`(,lsp-plugins "lv2")
|
||||||
mda-lv2
|
mda-lv2
|
||||||
rubberband
|
zam-plugins
|
||||||
zam-plugins))
|
ladspa))
|
||||||
(arguments
|
(arguments
|
||||||
`(#:glib-or-gtk? #t
|
`(#:glib-or-gtk? #t
|
||||||
#:phases
|
#:phases
|
||||||
|
|
Loading…
Reference in a new issue