diff options
author | Marius Bakke <marius@gnu.org> | 2021-05-09 21:29:46 +0200 |
---|---|---|
committer | Marius Bakke <marius@gnu.org> | 2021-05-09 21:29:46 +0200 |
commit | f03426420497cd9839f5fb3cb547dbecd8d6053b (patch) | |
tree | 220cdbab5b58b27c63d2df3ee711ad4bfdda074b /gnu/packages/audio.scm | |
parent | 3cf1afb7e7249992b2db2f4f00899fd22237e89a (diff) | |
parent | 069399ee9dbf75b7c89583f03346a63b2cfe4ac6 (diff) | |
download | guix-f03426420497cd9839f5fb3cb547dbecd8d6053b.tar.gz |
Merge branch 'master' into core-updates
Conflicts: gnu/local.mk gnu/packages/bioinformatics.scm gnu/packages/django.scm gnu/packages/gtk.scm gnu/packages/llvm.scm gnu/packages/python-web.scm gnu/packages/python.scm gnu/packages/tex.scm guix/build-system/asdf.scm guix/build/emacs-build-system.scm guix/profiles.scm
Diffstat (limited to 'gnu/packages/audio.scm')
-rw-r--r-- | gnu/packages/audio.scm | 40 |
1 files changed, 33 insertions, 7 deletions
diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm index 0831c33888..2c003a1359 100644 --- a/gnu/packages/audio.scm +++ b/gnu/packages/audio.scm @@ -29,7 +29,7 @@ ;;; Copyright © 2019 Hartmt Goebel <h.goebel@crazy-compilers.com> ;;; Copyright © 2019, 2021 Nicolas Goaziou <mail@nicolasgoaziou.fr> ;;; Copyright © 2020 Vincent Legoll <vincent.legoll@gmail.com> -;;; Copyright © 2020 Guillaume Le Vaillant <glv@posteo.net> +;;; Copyright © 2020, 2021 Guillaume Le Vaillant <glv@posteo.net> ;;; Copyright © 2020 Jonathan Frederickson <jonathan@terracrypt.net> ;;; Copyright © 2020 Giacomo Leidi <goodoldpaul@autistici.org> ;;; Copyright © 2020 Vinicius Monego <monego@posteo.net> @@ -302,7 +302,7 @@ Linux kernel.") (define-public libopenmpt (package (name "libopenmpt") - (version "0.5.4") + (version "0.5.8") (source (origin (method url-fetch) @@ -310,7 +310,7 @@ Linux kernel.") (string-append "https://download.openmpt.org/archive/libopenmpt/src/" "libopenmpt-" version "+release.autotools.tar.gz")) (sha256 - (base32 "0h7gpjx1221jwsq3k91p8zhf1h77qaxyasakc88s3g57vawhckgk")))) + (base32 "1kca5nc870mfv7i4ww2g1q9jn61gsq46irsypbr6fgxpfh8w5qi9")))) (build-system gnu-build-system) (arguments `(#:configure-flags @@ -407,7 +407,7 @@ by MusicIP.") (define-public libtimidity (package (name "libtimidity") - (version "0.2.6") + (version "0.2.7") (source (origin (method url-fetch) @@ -415,7 +415,7 @@ by MusicIP.") (string-append "https://sourceforge.net/projects/" name "/files/" name "/" version "/" name "-" version ".tar.gz")) (sha256 - (base32 "0p2px0m907gi1zpdr0l9adq25jl89j85c11ag9s2g4yc6n1nhgfm")))) + (base32 "0sif6lxa058b1mg19zwjm8rl2sg8cg0443k4dgi65clz0jy7qi16")))) (build-system gnu-build-system) (arguments `(#:tests? #f)) ; XXX: LibTiMidity could not be initialised @@ -4466,7 +4466,7 @@ library.") (define-public faudio (package (name "faudio") - (version "21.04") + (version "21.05") (source (origin (method git-fetch) @@ -4475,7 +4475,7 @@ library.") (commit version))) (file-name (git-file-name name version)) (sha256 - (base32 "1g3zp7igh4ns31sqnxddxqhgibijngkbcqqsj23i9d1lah6k4747")))) + (base32 "0lzvfx5gg5m6jbdzqwkjl4wq4fdg5n98fxn5x8n65vgvrj95sx6z")))) (arguments '(#:tests? #f ; No tests. #:configure-flags '("-DGSTREAMER=ON"))) @@ -5036,6 +5036,32 @@ digital radio.") (home-page "https://www.rowetel.com/?page_id=452") (license license:lgpl2.1))) +(define-public mbelib + ;; No release since 2016, use commit directly. + (let ((commit "9a04ed5c78176a9965f3d43f7aa1b1f5330e771f") + (revision "1")) + (package + (name "mbelib") + (version (git-version "1.3.0" revision commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/szechyjs/mbelib") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0a7xmf87xnjzm5b437j2vnwv39x0ascja1j04c5wj6xs1529gw8h")))) + (build-system cmake-build-system) + (home-page "https://github.com/szechyjs/mbelib") + (synopsis "P25 Phase 1 and ProVoice vocoder") + (description + "The mbelib library provides support for the 7200x4400 bit/s codec used +in P25 Phase 1, the 7100x4400 bit/s codec used in ProVoice and the @emph{Half +Rate} 3600x2250 bit/s vocoder used in various radio systems.") + (license (list license:bsd-3 ; test/ framework + license:isc))))) ; the rest + (define-public ableton-link (package (name "ableton-link") |