gnu: ruby-pandoc-ruby: Use pandoc instead of ghc-pandoc.
[jackhill/guix/guix.git] / gnu / packages / audio.scm
CommitLineData
fb68469f 1;;; GNU Guix --- Functional package management for GNU
6f85a9c4 2;;; Copyright © 2015, 2016, 2017, 2018, 2019, 2020 Ricardo Wurmus <rekado@elephly.net>
9f1cdd9d 3;;; Copyright © 2015 Taylan Ulrich Bayırlı/Kammer <taylanbayirli@gmail.com>
0390a520 4;;; Copyright © 2015 Andreas Enge <andreas@enge.fr>
d739f481 5;;; Copyright © 2015 Alex Kost <alezost@gmail.com>
1207a0c3 6;;; Copyright © 2015, 2016 Mark H Weaver <mhw@netris.org>
799298eb 7;;; Copyright © 2016, 2017, 2018, 2019 Efraim Flashner <efraim@flashner.co.il>
eb5378f9 8;;; Copyright © 2016, 2017 Alex Griffin <a@ajgrf.com>
3c986a7d 9;;; Copyright © 2016 Nikita <nikita@n0.is>
9a4c032c 10;;; Copyright © 2016 Lukas Gradl <lgradl@openmailbox.org>
d87d2567 11;;; Copyright © 2016, 2017, 2018, 2019, 2020 Tobias Geerinckx-Rice <me@tobias.gr>
7366d831 12;;; Copyright © 2018, 2020 Oleg Pykhalov <go.wigust@gmail.com>
9073c875 13;;; Copyright © 2018 okapi <okapi@firemail.cc>
74c7f367 14;;; Copyright © 2018, 2020 Maxim Cournoyer <maxim.cournoyer@gmail.com>
77cc8778 15;;; Copyright © 2018 Clément Lassieur <clement@lassieur.org>
4b3ff362 16;;; Copyright © 2018 Brett Gilio <brettg@gnu.org>
a4b71b32 17;;; Copyright © 2018, 2019 Marius Bakke <mbakke@fastmail.com>
7a44e875 18;;; Copyright © 2018 Thorsten Wilms <t_w_@freenet.de>
ef8517f2 19;;; Copyright © 2018 Eric Bavier <bavier@member.fsf.org>
dcfa0acd 20;;; Copyright © 2018 Brendan Tildesley <mail@brendan.scot>
b06966b4 21;;; Copyright © 2019 Pierre Langlois <pierre.langlois@gmx.com>
17098a49 22;;; Copyright © 2019 Leo Famulari <leo@famulari.name>
ea3510f8 23;;; Copyright © 2019 Rutger Helling <rhelling@mykolab.com>
e13714b6 24;;; Copyright © 2019 Arun Isaac <arunisaac@systemreboot.net>
772ca8e4 25;;; Copyright © 2019 Mathieu Othacehe <m.othacehe@gmail.com>
5d703da3 26;;; Copyright © 2019, 2020 Alexandros Theodotou <alex@zrythm.org>
615a4fbf 27;;; Copyright © 2019 Christopher Lemmer Webber <cwebber@dustycloud.org>
d83bb797 28;;; Copyright © 2019 Jan Wielkiewicz <tona_kosmicznego_smiecia@interia.pl>
a8e14943 29;;; Copyright © 2019 Hartmt Goebel <h.goebel@crazy-compilers.com>
1ce6bfc2 30;;; Copyright © 2019 Nicolas Goaziou <mail@nicolasgoaziou.fr>
391d12ff 31;;; Copyright © 2020 Vincent Legoll <vincent.legoll@gmail.com>
7cd2609e 32;;; Copyright © 2020 Guillaume Le Vaillant <glv@posteo.net>
ecd56cd1 33;;; Copyright © 2020 Jonathan Frederickson <jonathan@terracrypt.net>
6241eacd 34;;; Copyright © 2020 Giacomo Leidi <goodoldpaul@autistici.org>
d474052b 35;;; Copyright © 2020 Vinicius Monego <monego@posteo.net>
fb68469f
RW
36;;;
37;;; This file is part of GNU Guix.
38;;;
39;;; GNU Guix is free software; you can redistribute it and/or modify it
40;;; under the terms of the GNU General Public License as published by
41;;; the Free Software Foundation; either version 3 of the License, or (at
42;;; your option) any later version.
43;;;
44;;; GNU Guix is distributed in the hope that it will be useful, but
45;;; WITHOUT ANY WARRANTY; without even the implied warranty of
46;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
47;;; GNU General Public License for more details.
48;;;
49;;; You should have received a copy of the GNU General Public License
50;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
51
52(define-module (gnu packages audio)
fb68469f 53 #:use-module (gnu packages)
d55f912a 54 #:use-module (gnu packages algebra)
9f1cdd9d 55 #:use-module (gnu packages autotools)
fcbeb00b 56 #:use-module (gnu packages avahi)
a76abae1 57 #:use-module (gnu packages backup)
7c92efff 58 #:use-module (gnu packages base)
fda85ca6 59 #:use-module (gnu packages bison)
522ec708 60 #:use-module (gnu packages boost)
971ebdc8 61 #:use-module (gnu packages check)
7c92efff 62 #:use-module (gnu packages compression)
88efb2c3 63 #:use-module (gnu packages curl)
255d1bbe 64 #:use-module (gnu packages dbm)
0f2ce448 65 #:use-module (gnu packages documentation)
70d9ef51 66 #:use-module (gnu packages elf)
8ae60404 67 #:use-module (gnu packages emacs)
754a98ae 68 #:use-module (gnu packages file)
fda85ca6 69 #:use-module (gnu packages flex)
11d4800a
RW
70 #:use-module (gnu packages fltk)
71 #:use-module (gnu packages fontutils)
25e49169 72 #:use-module (gnu packages gcc)
fda85ca6 73 #:use-module (gnu packages gettext)
f5340e00 74 #:use-module (gnu packages gl)
88efb2c3 75 #:use-module (gnu packages glib)
88efb2c3 76 #:use-module (gnu packages gnome)
8ae60404 77 #:use-module (gnu packages gnunet) ; libmicrohttpd
fcbeb00b 78 #:use-module (gnu packages gperf)
522ec708 79 #:use-module (gnu packages gtk)
1ab58a3d 80 #:use-module (gnu packages guile)
247384d0 81 #:use-module (gnu packages icu4c)
d739f481 82 #:use-module (gnu packages image)
dba33ca3 83 #:use-module (gnu packages libbsd)
72d9ef1b 84 #:use-module (gnu packages libusb)
522ec708 85 #:use-module (gnu packages linux)
8ae60404 86 #:use-module (gnu packages llvm)
670da398 87 #:use-module (gnu packages man)
522ec708 88 #:use-module (gnu packages maths)
88efb2c3 89 #:use-module (gnu packages mp3) ;taglib
522ec708
TGR
90 #:use-module (gnu packages multiprecision)
91 #:use-module (gnu packages music)
92 #:use-module (gnu packages ncurses)
17aa4eb4 93 #:use-module (gnu packages networking)
522ec708 94 #:use-module (gnu packages onc-rpc)
88efb2c3 95 #:use-module (gnu packages perl)
c54a8981
RW
96 #:use-module (gnu packages pkg-config)
97 #:use-module (gnu packages pulseaudio) ;libsndfile, libsamplerate
d55f912a 98 #:use-module (gnu packages python)
44d10b1f 99 #:use-module (gnu packages python-xyz)
522ec708 100 #:use-module (gnu packages qt)
5279eb6f 101 #:use-module (gnu packages rdf)
c54a8981 102 #:use-module (gnu packages readline)
ea3510f8 103 #:use-module (gnu packages sdl)
247384d0 104 #:use-module (gnu packages serialization)
dba33ca3 105 #:use-module (gnu packages telephony)
9be3ab7b 106 #:use-module (gnu packages linphone)
8ae60404 107 #:use-module (gnu packages tls)
7cd2609e 108 #:use-module (gnu packages valgrind)
e87c7ec2 109 #:use-module (gnu packages video)
8ae60404 110 #:use-module (gnu packages vim) ;xxd
bf592ef5 111 #:use-module (gnu packages web)
02979664 112 #:use-module (gnu packages webkit)
cd381c31 113 #:use-module (gnu packages wxwidgets)
c54a8981 114 #:use-module (gnu packages xiph)
da49086a 115 #:use-module (gnu packages xml)
caf9055c 116 #:use-module (gnu packages xorg)
522ec708 117 #:use-module (guix build-system cmake)
d4bd5c60 118 #:use-module (guix build-system copy)
522ec708
TGR
119 #:use-module (guix build-system glib-or-gtk)
120 #:use-module (guix build-system gnu)
121 #:use-module (guix build-system meson)
122 #:use-module (guix build-system python)
123 #:use-module (guix build-system trivial)
124 #:use-module (guix build-system waf)
125 #:use-module (guix download)
126 #:use-module (guix git-download)
127 #:use-module ((guix licenses) #:prefix license:)
128 #:use-module (guix packages)
129 #:use-module (guix utils)
118a8ecc
EF
130 #:use-module (srfi srfi-1)
131 #:use-module (srfi srfi-26))
fb68469f 132
08d048a0
RG
133(define-public opensles
134 (package
135 (name "opensles")
136 (version "1.1.0")
137 (source
138 (origin
139 (method git-fetch)
140 (uri
141 (git-reference
142 (url "https://github.com/KhronosGroup/OpenSL-ES-Registry.git")
143 (commit "ea5104bf37bf525c25e6ae2386586048179d0fda")))
144 (file-name (git-file-name name version))
145 (sha256
146 (base32 "0j5bm7h3ahz66f23i9abwc0y10agfkpksnj6y078x2nichq66h4f"))
147 (patches
148 (search-patches "opensles-add-license-file.patch"))))
149 (build-system copy-build-system)
150 (arguments
151 `(#:phases
152 (modify-phases %standard-phases
153 (add-after 'install 'clean
154 (lambda* (#:key outputs #:allow-other-keys)
155 (let* ((out (assoc-ref outputs "out")))
156 (mkdir-p (string-append out "/etc"))
157 (mkdir-p (string-append out "/include"))
158 (mkdir-p (string-append out "/share"))
159 (rename-file
160 (string-append out "/api/1.1/OpenSLES_IID.c")
161 (string-append out "/etc/OpenSLES_IID.c"))
162 (rename-file
163 (string-append out "/api/1.1/OpenSLES.h")
164 (string-append out "/include/OpenSLES.h"))
165 (rename-file
166 (string-append out "/api/1.1/OpenSLES_Platform.h")
167 (string-append out "/include/OpenSLES_Platform.h"))
168 (rename-file
169 (string-append out "/api/1.1/README.txt")
170 (string-append out "/share/README.txt"))
171 (rename-file
172 (string-append out "/LICENSE.txt")
173 (string-append out "/share/LICENSE.txt"))
174 (for-each delete-file-recursively
175 (list
176 (string-append out "/api")
177 (string-append out "/specs")))
178 (for-each delete-file
179 (list
180 (string-append out "/CODE_OF_CONDUCT.md")
181 (string-append out "/index.php")
182 (string-append out "/README.md"))))
183 #t)))))
184 (synopsis "Embedded Audio Acceleration")
185 (description "OpenSLES is a royalty-free, cross-platform,
186hardware-accelerated audio API tuned for embedded systems. It provides a
187standardized, high-performance, low-latency method to access audio
188functionality for developers of native applications on embedded mobile
189multimedia devices, enabling straightforward cross-platform deployment of
190hardware and software audio capabilities, reducing implementation effort, and
191promoting the market for advanced audio.")
192 (home-page "https://www.khronos.org/opensles/")
193 (license (license:non-copyleft "file:///LICENSE.txt"))))
194
3afbc16b
RG
195(define-public wildmidi
196 (package
197 (name "wildmidi")
198 (version "0.4.3")
199 (source
200 (origin
201 (method git-fetch)
202 (uri
203 (git-reference
204 (url "https://github.com/Mindwerks/wildmidi.git")
205 (commit (string-append name "-" version))))
206 (file-name (git-file-name name version))
207 (sha256
208 (base32 "01f4a9c5xlap5a4pkfnlgkzk5pjlk43zkq6fnw615ghya04g6hrl"))))
209 (build-system cmake-build-system)
210 (arguments
211 `(#:tests? #f ; No target
212 #:configure-flags
213 (list
214 "-DWANT_ALSA=ON"
215 "-DWANT_OSS=ON"
216 "-DWANT_OPENAL=ON")))
217 (inputs
218 `(("alsa" ,alsa-lib)
219 ("openal" ,openal)))
220 (synopsis "Software Synthesizer")
221 (description "WildMIDI is a simple software midi player which has a core
222softsynth library that can be use with other applications.")
223 (home-page "https://www.mindwerks.net/projects/wildmidi/")
224 (license
225 (list
226 ;; Library.
227 license:lgpl3+
228 ;; Player.
229 license:gpl3+))))
230
94e8c890
RG
231(define-public webrtc-audio-processing
232 (package
233 (name "webrtc-audio-processing")
234 (version "0.3.1")
235 (source
236 (origin
237 (method url-fetch)
238 (uri
239 (string-append "http://freedesktop.org/software/pulseaudio/"
240 name "/" name "-" version ".tar.xz"))
241 (sha256
242 (base32 "1gsx7k77blfy171b6g3m0k0s0072v6jcawhmx1kjs9w5zlwdkzd0"))))
243 (build-system gnu-build-system)
244 (synopsis "WebRTC's Audio Processing Library")
245 (description "WebRTC-Audio-Processing library based on Google's
246implementation of WebRTC.")
247 (home-page
248 "https://freedesktop.org/software/pulseaudio/webrtc-audio-processing/")
249 (license (license:non-copyleft "file:///COPYING"))))
250
5ca56bd5
RG
251(define-public vo-aacenc
252 (package
253 (name "vo-aacenc")
254 (version "0.1.3")
255 (source
256 (origin
257 (method url-fetch)
258 (uri
259 (string-append "https://sourceforge.net/projects/opencore-amr/files/"
260 name "/" name "-" version ".tar.gz"))
261 (sha256
262 (base32 "0dhghm3c8pqrriwwyj5x9i0yf52fmdfijbgqqkvqvwarldvp86p5"))))
263 (build-system gnu-build-system)
264 (synopsis "VisualOn AAC Encoder")
265 (description "VO-AACENC is the VisualOn implementation of Advanced Audio
266Coding (AAC) encoder.")
267 (home-page "https://sourceforge.net/projects/opencore-amr/")
268 (license license:asl2.0)))
269
d4bd5c60
RG
270(define-public tinyalsa
271 (package
272 (name "tinyalsa")
273 (version "1.1.1")
274 (source
275 (origin
276 (method git-fetch)
277 (uri
278 (git-reference
279 (url "https://github.com/tinyalsa/tinyalsa.git")
280 (commit version)))
281 (file-name (git-file-name name version))
282 (sha256
283 (base32 "0ajyvml5bnzvhiyyrn42gqwgg23ssxkfh09rvsnywhzxhd0xai4h"))))
284 (build-system gnu-build-system)
285 (arguments
286 `(#:tests? #f ; No target
287 #:phases
288 (modify-phases %standard-phases
289 (delete 'configure))
290 #:make-flags
291 (list
292 (string-append "PREFIX=" (assoc-ref %outputs "out")))))
293 (synopsis "ALSA interfacing library")
294 (description "TinyALSA is a small library to interface with ALSA in the
295Linux kernel.")
296 (home-page "https://github.com/tinyalsa/tinyalsa")
297 (license (license:non-copyleft "file:///NOTICE"))))
298
d6ef1039
RG
299(define-public libopenmpt
300 (package
301 (name "libopenmpt")
8ac4c3c1 302 (version "0.5.2")
d6ef1039
RG
303 (source
304 (origin
305 (method url-fetch)
306 (uri
e48c12a3
TGR
307 (string-append "https://download.openmpt.org/archive/libopenmpt/src/"
308 "libopenmpt-" version "+release.autotools.tar.gz"))
d6ef1039 309 (sha256
8ac4c3c1 310 (base32 "1cwpc4j90dpxa2siia68rg9qwwm2xk6bhxnslfjj364507jy6s4l"))))
d6ef1039 311 (build-system gnu-build-system)
2933e4d4
TGR
312 (arguments
313 `(#:configure-flags
314 (list (string-append "--docdir=" (assoc-ref %outputs "out")
2c6b6d79
TGR
315 "/share/doc/" ,name "-" ,version))
316 #:phases
317 (modify-phases %standard-phases
318 (add-after 'install 'delete-static-libraries
319 (lambda* (#:key outputs #:allow-other-keys)
320 (let* ((out (assoc-ref outputs "out"))
321 (lib (string-append out "/lib")))
322 (for-each delete-file (find-files lib "\\.a$"))
323 #t))))))
d6ef1039
RG
324 (native-inputs
325 `(("doxygen" ,doxygen)
326 ("perl" ,perl)
327 ("pkg-config" ,pkg-config)))
328 (inputs
329 `(("alsa" ,alsa-lib)
330 ("flac" ,flac)
331 ("mpg123" ,mpg123)
332 ("portaudio" ,portaudio)
333 ("pulseaudio" ,pulseaudio)
334 ("sdl2" ,sdl2)
335 ("sndfile" ,libsndfile)
336 ("vorbis" ,libvorbis)
337 ("zlib" ,zlib)))
338 (synopsis "Audio tracking library")
339 (description "LibOpenMPT is a cross-platform C++ and C module playback
340library. It is based on the player code of the Open ModPlug Tracker project.")
341 (home-page "https://openmpt.org/")
342 (license (license:non-copyleft "file:///LICENSE"))))
343
38375ce9
RG
344(define-public libofa
345 (package
346 (name "libofa")
347 (version "0.9.3")
348 (source
349 (origin
350 (method url-fetch)
351 (uri
352 (string-append "https://storage.googleapis.com/"
353 "google-code-archive-downloads/v2/code.google.com/"
354 "musicip-libofa/" name "-" version ".tar.gz"))
355 (sha256
356 (base32 "184ham039l7lwhfgg0xr2vch2xnw1lwh7sid432mh879adhlc5h2"))
357 (patches
358 (search-patches
359 "libofa-ftbfs-1.diff"
360 "libofa-curl.diff"
361 "libofa-ftbfs-2.diff"))))
362 (build-system gnu-build-system)
363 (native-inputs
364 `(("pkg-config" ,pkg-config)))
365 (inputs
366 `(("curl" ,curl)
367 ("expat" ,expat)))
368 (propagated-inputs
369 `(("fftw" ,fftw)))
370 (synopsis "Open Fingerprint Architecture")
371 (description "LibOFA is an audio fingerprint library, created and provided
372by MusicIP.")
373 (home-page "https://code.google.com/archive/p/musicip-libofa/")
374 (license license:gpl2+)))
375
de4ca093
RG
376(define-public faac
377 (package
378 (name "faac")
379 (version "1.30")
380 (source
381 (origin
382 (method url-fetch)
383 (uri
384 (string-append "https://sourceforge.net/projects/faac/files/faac-src/"
385 "faac-1.30/faac-1_30.tar.gz/download"))
386 (sha256
387 (base32 "1lmj0dib3mjp84jhxc5ddvydkzzhb0gfrdh3ikcidjlcb378ghxd"))))
388 (build-system gnu-build-system)
389 (native-inputs
390 `(("autoconf" ,autoconf)
391 ("automake" ,automake)
392 ("libtool" ,libtool)
393 ("pkg-config" ,pkg-config)))
394 (synopsis "Freeware Advanced Audio Coder")
395 (description "FAAC is an MPEG-4 and MPEG-2 AAC encoder.")
396 (home-page "https://www.audiocoding.com/faac.html")
397 (license
398 (list
399 ;; ISO MPEG-4 reference code.
400 license:gpl2+
401 ;; Others.
402 license:lgpl2.0+))))
403
568af1bd
RG
404(define-public libtimidity
405 (package
406 (name "libtimidity")
407 (version "0.2.6")
408 (source
409 (origin
410 (method url-fetch)
411 (uri
412 (string-append "https://sourceforge.net/projects/" name "/files/"
413 name "/" version "/" name "-" version ".tar.gz"))
414 (sha256
415 (base32 "0p2px0m907gi1zpdr0l9adq25jl89j85c11ag9s2g4yc6n1nhgfm"))))
416 (build-system gnu-build-system)
417 (arguments
418 `(#:tests? #f)) ; XXX: LibTiMidity could not be initialised
419 (native-inputs
420 `(("pkg-config" ,pkg-config)))
421 (inputs
422 `(("ao" ,ao)))
423 (synopsis "MIDI to WAVE converter library")
424 (description "LibTiMidity is a MIDI to WAVE converter library that uses
425Gravis Ultrasound-compatible patch files to generate digital audio data from
426General MIDI files.")
427 (home-page "http://libtimidity.sourceforge.net/")
428 (license
429 ;; This project is dual-licensed.
430 ;; Either of the following licenses can be exercised.
431 (list
432 license:lgpl2.1+
433 license:artistic2.0))))
434
62e9f00c
RG
435(define-public vo-amrwbenc
436 (package
437 (name "vo-amrwbenc")
438 (version "0.1.3")
439 (source
440 (origin
441 (method url-fetch)
442 (uri
443 (string-append "https://sourceforge.net/projects/opencore-amr/files/"
444 name "/" name "-" version ".tar.gz"))
445 (sha256
446 (base32 "0klx3nkidc6b8aawchpk19n3xlrzgnc046w4gd0rdqphw28v6ljn"))))
447 (build-system gnu-build-system)
448 (synopsis "Adaptive Multi Rate Codec")
449 (description "VO-AMR is a library of VisualOn implementation of
450Adaptive Multi Rate Narrowband and Wideband (AMR-NB and AMR-WB) speech codec.")
451 (home-page "https://sourceforge.net/projects/opencore-amr/")
452 (license license:asl2.0)))
453
d5fc8518
RG
454(define-public opencore-amr
455 (package
456 (name "opencore-amr")
457 (version "0.1.5")
458 (source
459 (origin
460 (method url-fetch)
461 (uri
462 (string-append "https://sourceforge.net/projects/opencore-amr/files/"
463 name "/" name "-" version ".tar.gz"))
464 (sha256
465 (base32 "0hfk9khz3by0119h3jdwgdfd7jgkdbzxnmh1wssvylgnsnwnq01c"))))
466 (build-system gnu-build-system)
467 (synopsis "Adaptive Multi Rate Codec")
468 (description "OpenCore-AMR is a library of OpenCORE Framework
469implementation of Adaptive Multi Rate Narrowband and Wideband
470(AMR-NB and AMR-WB) speech codec.")
471 (home-page "https://sourceforge.net/projects/opencore-amr/")
472 (license license:asl2.0)))
473
eb0fb087
RW
474(define-public alsa-modular-synth
475 (package
476 (name "alsa-modular-synth")
61eecd71 477 (version "2.1.2")
eb0fb087
RW
478 (source (origin
479 (method url-fetch)
de67e922
LF
480 (uri (string-append "mirror://sourceforge/alsamodular/alsamodular"
481 "/" version "/ams-" version ".tar.bz2"))
eb0fb087
RW
482 (sha256
483 (base32
401e6ccb
RW
484 "1azbrhpfk4nnybr7kgmc7w6al6xnzppg853vas8gmkh185kk11l0"))
485 (patches
486 (search-patches "alsa-modular-synth-fix-vocoder.patch"))))
eb0fb087 487 (build-system gnu-build-system)
ee6a88b1 488 (arguments
6670c99c
DC
489 `(#:configure-flags
490 '("--enable-qt5"
491 "CXXFLAGS=-std=gnu++11")
afadb05e
RW
492 #:phases
493 (modify-phases %standard-phases
ea7882b2
RW
494 (add-after 'set-paths 'hide-default-gcc
495 (lambda* (#:key inputs #:allow-other-keys)
496 (let ((gcc (assoc-ref inputs "gcc")))
497 ;; Remove the default GCC from CPLUS_INCLUDE_PATH to prevent
498 ;; conflicts with the GCC 5 input.
499 (setenv "CPLUS_INCLUDE_PATH"
500 (string-join
501 (delete (string-append gcc "/include/c++")
502 (string-split (getenv "CPLUS_INCLUDE_PATH") #\:))
503 ":"))
504 #t)))
afadb05e
RW
505 ;; Insert an extra space between linker flags.
506 (add-before 'configure 'add-missing-space
507 (lambda _
508 (substitute* "configure"
509 (("LIBS\\+=\\$LIBSsave") "LIBS+=\" $LIBSsave\"")
510 (("CFLAGS\\+=\\$CFLAGSsave") "CFLAGS+=\" $CFLAGSsave\""))
511 #t)))))
eb0fb087
RW
512 (inputs
513 `(("alsa-lib" ,alsa-lib)
514 ;; We cannot use zita-alsa-pcmi (the successor of clalsadrv) due to
515 ;; license incompatibility.
516 ("clalsadrv" ,clalsadrv)
517 ("fftw" ,fftw)
518 ("jack" ,jack-1)
519 ("ladspa" ,ladspa)
520 ("liblo" ,liblo)
391d12ff 521 ("qtbase" ,qtbase)))
eb0fb087 522 (native-inputs
bed0c4c8 523 `(("pkg-config" ,pkg-config)
391d12ff 524 ("qttools" ,qttools)
ea7882b2 525 ("gcc@5" ,gcc-5)))
eb0fb087
RW
526 (home-page "http://alsamodular.sourceforge.net/")
527 (synopsis "Realtime modular synthesizer and effect processor")
528 (description
529 "AlsaModularSynth is a digital implementation of a classical analog
530modular synthesizer system. It uses virtual control voltages to control the
531parameters of the modules. The control voltages which control the frequency
532e.g. of the VCO (Voltage Controlled Oscillator) and VCF (Voltage Controlled
533Filter) modules follow the convention of 1V / Octave.")
534 (license license:gpl2)))
535
d55f912a
RW
536(define-public aubio
537 (package
538 (name "aubio")
4a17211a 539 (version "0.4.9")
d55f912a
RW
540 (source (origin
541 (method url-fetch)
542 (uri (string-append
c2f6c9ba 543 "https://aubio.org/pub/aubio-" version ".tar.bz2"))
d55f912a
RW
544 (sha256
545 (base32
4a17211a 546 "1npks71ljc48w6858l9bq30kaf5nph8z0v61jkfb70xb9np850nl"))))
d55f912a
RW
547 (build-system waf-build-system)
548 (arguments
4a17211a 549 `(#:tests? #f ; no check target
d55f912a 550 #:configure-flags
409dec3f
TGR
551 (list
552 (string-append "LDFLAGS=-Wl,-rpath=" (assoc-ref %outputs "out") "/lib")
553 "--enable-fftw3f"
554 "--enable-jack"
555 "--enable-sndfile"
556 "--enable-samplerate"
4ab9ad1e 557 "--enable-avcodec")
d55f912a
RW
558 #:python ,python-2))
559 (inputs
560 `(("jack" ,jack-1)
d55f912a
RW
561 ("libsndfile" ,libsndfile)
562 ("libsamplerate" ,libsamplerate)
4ab9ad1e
KK
563 ("fftwf" ,fftwf)
564 ("ffmpeg" ,ffmpeg))) ; for libavcodec
d55f912a
RW
565 (native-inputs
566 `(("pkg-config" ,pkg-config)))
c2f6c9ba 567 (home-page "https://aubio.org/")
a124bbd2 568 (synopsis "Library for audio labelling")
d55f912a
RW
569 (description
570 "aubio is a tool designed for the extraction of annotations from audio
571signals. Its features include segmenting a sound file before each of its
572attacks, performing pitch detection, tapping the beat and producing MIDI
573streams from live audio.")
574 (license license:gpl3+)))
575
d49976ed
RW
576(define (ardour-rpath-phase major-version)
577 `(lambda* (#:key outputs #:allow-other-keys)
578 (let ((libdir (string-append (assoc-ref outputs "out")
579 "/lib/ardour" ,major-version)))
580 (substitute* "wscript"
581 (("linker_flags = \\[\\]")
582 (string-append "linker_flags = [\""
583 "-Wl,-rpath="
584 libdir ":"
585 libdir "/backends" ":"
586 libdir "/engines" ":"
587 libdir "/panners" ":"
588 libdir "/surfaces" ":"
589 libdir "/vamp" "\"]"))))
590 #t))
591
60725232 592(define-public ardour
88efb2c3
RW
593 (package
594 (name "ardour")
d30f920c 595 (version "5.12")
88efb2c3 596 (source (origin
88efb2c3
RW
597 (method git-fetch)
598 (uri (git-reference
5f13bf09 599 (url "https://git.ardour.org/ardour/ardour.git")
88efb2c3
RW
600 (commit version)))
601 (snippet
b16043a3
RW
602 ;; Ardour expects this file to exist at build time. The revision
603 ;; is the output of
604 ;; git describe HEAD | sed 's/^[A-Za-z]*+//'
02ecdeaa 605 `(call-with-output-file
88efb2c3
RW
606 "libs/ardour/revision.cc"
607 (lambda (port)
02ecdeaa 608 (format port ,(string-append "#include \"ardour/revision.h\"
6cbee49d
MW
609namespace ARDOUR { const char* revision = \"" version "\" ; }"))
610 #t)))
88efb2c3
RW
611 (sha256
612 (base32
d30f920c 613 "0mla5lm51ryikc2rrk53max2m7a5ds6i1ai921l2h95wrha45nkr"))
88efb2c3
RW
614 (file-name (string-append name "-" version))))
615 (build-system waf-build-system)
616 (arguments
b5fc72ff 617 `(#:configure-flags '("--cxx11" ; required by gtkmm
ba5c8567 618 "--no-phone-home" ; don't contact ardour.org
ff46016e 619 "--freedesktop" ; build .desktop file
5f0c6496 620 "--test") ; build unit tests
92e4fbe2 621 #:phases
21481a28 622 (modify-phases %standard-phases
ff46016e
BT
623 (add-after 'unpack 'set-rpath-in-LDFLAGS
624 ,(ardour-rpath-phase (version-major version)))
625 (add-after 'install 'install-freedesktop-files
626 (lambda* (#:key outputs #:allow-other-keys)
627 (let* ((out (assoc-ref outputs "out"))
628 (share (string-append out "/share"))
629 (ver ,(version-major version)))
630 (for-each
631 (lambda (size)
632 (let ((dir (string-append share "/icons/hicolor/"
633 size "x" size "/apps")))
634 (mkdir-p dir)
635 (copy-file
636 (string-append "gtk2_ardour/resources/Ardour-icon_"
637 size "px.png")
638 (string-append dir "/ardour" ver ".png"))))
639 '("16" "22" "32" "48" "256"))
640 (install-file (string-append "build/gtk2_ardour/ardour"
641 ver ".desktop")
642 (string-append share "/applications/"))
643 (install-file (string-append "build/gtk2_ardour/ardour"
644 ver ".appdata.xml")
645 (string-append share "/appdata/")))
646 #t)))
5f0c6496 647 #:test-target "test"
88efb2c3
RW
648 #:python ,python-2))
649 (inputs
650 `(("alsa-lib" ,alsa-lib)
19dd523c 651 ("atkmm" ,atkmm)
88efb2c3 652 ("aubio" ,aubio)
88efb2c3 653 ("boost" ,boost)
88efb2c3 654 ("cairomm" ,cairomm)
19dd523c 655 ("curl" ,curl)
c5edbb97 656 ("eudev" ,eudev)
19dd523c
BT
657 ("fftw" ,fftw)
658 ("fftwf" ,fftwf)
659 ("flac" ,flac)
88efb2c3 660 ("glibmm" ,glibmm)
19dd523c
BT
661 ("gtkmm" ,gtkmm-2)
662 ("jack" ,jack-1)
663 ("libarchive" ,libarchive)
88efb2c3
RW
664 ("libart-lgpl" ,libart-lgpl)
665 ("libgnomecanvasmm" ,libgnomecanvasmm)
88efb2c3 666 ("liblo" ,liblo)
88efb2c3 667 ("libogg" ,libogg)
19dd523c
BT
668 ("libsamplerate" ,libsamplerate)
669 ("libsndfile" ,libsndfile)
72d9ef1b 670 ("libusb" ,libusb)
88efb2c3 671 ("libvorbis" ,libvorbis)
19dd523c
BT
672 ("libxml2" ,libxml2)
673 ("lilv" ,lilv)
674 ("lrdf" ,lrdf)
88efb2c3 675 ("lv2" ,lv2)
19dd523c
BT
676 ("pangomm" ,pangomm)
677 ("python-rdflib" ,python-rdflib)
678 ("readline" ,readline)
679 ("redland" ,redland)
680 ("rubberband" ,rubberband)
88efb2c3
RW
681 ("serd" ,serd)
682 ("sord" ,sord)
683 ("sratom" ,sratom)
684 ("suil" ,suil)
88efb2c3 685 ("taglib" ,taglib)
19dd523c 686 ("vamp" ,vamp)))
88efb2c3 687 (native-inputs
19dd523c 688 `(("cppunit" ,cppunit)
ba5c8567 689 ("gettext" ,gettext-minimal)
19dd523c
BT
690 ("itstool" ,itstool)
691 ("perl" ,perl)
88efb2c3 692 ("pkg-config" ,pkg-config)))
5ba94aa7 693 (home-page "https://ardour.org")
88efb2c3
RW
694 (synopsis "Digital audio workstation")
695 (description
696 "Ardour is a multi-channel digital audio workstation, allowing users to
697record, edit, mix and master audio and MIDI projects. It is targeted at audio
698engineers, musicians, soundtrack editors and composers.")
699 (license license:gpl2+)))
700
cd381c31
KK
701(define-public audacity
702 (package
703 (name "audacity")
5e0461c6 704 (version "2.4.1")
cd381c31
KK
705 (source
706 (origin
8713c03e
TGR
707 (method git-fetch)
708 (uri (git-reference
b0e7b699 709 (url "https://github.com/audacity/audacity")
8713c03e
TGR
710 (commit (string-append "Audacity-" version))))
711 (file-name (git-file-name name version))
cd381c31 712 (sha256
3ae45eb4 713 (base32
5e0461c6 714 "1xk0piv72d2xd3p7igr916fhcbrm76fhjr418k1rlqdzzg1hfljn"))
3182a1d2
RW
715 (patches (search-patches "audacity-build-with-system-portaudio.patch"))
716 (modules '((guix build utils)))
717 (snippet
718 ;; Remove bundled libraries.
719 '(begin
720 (for-each
721 (lambda (dir)
722 (delete-file-recursively (string-append "lib-src/" dir)))
d75a0cd9 723 '("expat" "ffmpeg" "lame" "libflac" "libid3tag" "libmad" "libogg"
3182a1d2
RW
724 "libsndfile" "libsoxr" "libvamp" "libvorbis" "lv2"
725 "portaudio-v19" "portmidi" "soundtouch" "twolame"
726 ;; FIXME: these libraries have not been packaged yet:
727 ;; "libnyquist"
728 ;; "libscorealign"
729 ;; "libwidgetextra"
730 ;; "portburn"
731 ;; "portsmf"
732 ;; "portmixer"
733
734 ;; FIXME: we have this library, but it differs in that the Slide
735 ;; class does not have a member "getInverseStretchedTime".
736 ;; "sbsms"
737 ))
738 #t))))
b0f43001 739 (build-system glib-or-gtk-build-system)
cd381c31 740 (inputs
3182a1d2 741 `(("wxwidgets" ,wxwidgets)
99e0fb24 742 ("gtk+" ,gtk+)
cd381c31
KK
743 ("alsa-lib" ,alsa-lib)
744 ("jack" ,jack-1)
745 ("expat" ,expat)
746 ("ffmpeg" ,ffmpeg)
747 ("lame" ,lame)
748 ("flac" ,flac)
749 ("libid3tag" ,libid3tag)
750 ("libmad" ,libmad)
3182a1d2 751 ;;("libsbsms" ,libsbsms) ;bundled version is modified
cd381c31
KK
752 ("libsndfile" ,libsndfile)
753 ("soundtouch" ,soundtouch)
754 ("soxr" ,soxr) ;replaces libsamplerate
755 ("twolame" ,twolame)
756 ("vamp" ,vamp)
757 ("libvorbis" ,libvorbis)
758 ("lv2" ,lv2)
3182a1d2
RW
759 ("lilv" ,lilv) ;for lv2
760 ("suil" ,suil) ;for lv2
761 ("portaudio" ,portaudio)
762 ("portmidi" ,portmidi)))
cd381c31
KK
763 (native-inputs
764 `(("autoconf" ,autoconf)
765 ("automake" ,automake)
766 ("gettext" ,gettext-minimal) ;for msgfmt
767 ("libtool" ,libtool)
768 ("pkg-config" ,pkg-config)
769 ("python" ,python-2)
770 ("which" ,which)))
771 (arguments
118a8ecc 772 `(#:configure-flags
cd381c31 773 (let ((libid3tag (assoc-ref %build-inputs "libid3tag"))
3182a1d2
RW
774 (libmad (assoc-ref %build-inputs "libmad"))
775 (portmidi (assoc-ref %build-inputs "portmidi")))
cd381c31
KK
776 (list
777 ;; Loading FFmpeg dynamically is problematic.
778 "--disable-dynamic-loading"
118a8ecc
EF
779 ;; SSE instructions are available on Intel systems only.
780 ,@(if (any (cute string-prefix? <> (or (%current-target-system)
781 (%current-system)))
eaaeb8f1 782 '("x86_64" "i686"))
118a8ecc
EF
783 '()
784 '("--enable-sse=no"))
3182a1d2
RW
785 ;; portmidi, libid3tag and libmad provide no .pc files, so
786 ;; pkg-config fails to find them. Force their inclusion.
cd381c31
KK
787 (string-append "ID3TAG_CFLAGS=-I" libid3tag "/include")
788 (string-append "ID3TAG_LIBS=-L" libid3tag "/lib -lid3tag -lz")
789 (string-append "LIBMAD_CFLAGS=-I" libmad "/include")
3182a1d2
RW
790 (string-append "LIBMAD_LIBS=-L" libmad "/lib -lmad")
791 (string-append "PORTMIDI_CFLAGS=-I" portmidi "/include")
792 (string-append "PORTMIDI_LIBS=-L" portmidi "/lib -lportmidi")
793 "EXPAT_USE_SYSTEM=yes"
794 "FFMPEG_USE_SYSTEM=yes"
795 "LAME_USE_SYSTEM=yes"
796 "LIBFLAC_USE_SYSTEM=yes"
797 "LIBID3TAG_USE_SYSTEM=yes"
798 "LIBMAD_USE_SYSTEM=yes"
799 "USE_LOCAL_LIBNYQUIST=" ;not packaged yet
800 ;;"LIBSBSMS_USE_SYSTEM=yes" ;bundled version is patched
801 "LIBSNDFILE_USE_SYSTEM=yes"
802 "LIBSOUNDTOUCH_USE_SYSTEM=yes"
803 "LIBSOXR_USE_SYSTEM=yes"
804 "LIBTWOLAME_USE_SYSTEM=yes"
805 "LIBVAMP_USE_SYSTEM=yes"
806 "LIBVORBIS_USE_SYSTEM=yes"
807 "LV2_USE_SYSTEM=yes"
808 "PORTAUDIO_USE_SYSTEM=yes"))
cd381c31
KK
809 #:phases
810 (modify-phases %standard-phases
3182a1d2 811 (add-after 'unpack 'fix-sbsms-check
cd381c31 812 (lambda _
3182a1d2
RW
813 ;; This check is wrong: there is no 2.2.0 release; not even the
814 ;; bundled sources match this release string.
815 (substitute* '("m4/audacity_checklib_libsbsms.m4"
816 "configure")
817 (("sbsms >= 2.2.0") "sbsms >= 2.0.0"))
818 #t))
819 (add-after 'unpack 'use-upstream-headers
820 (lambda* (#:key inputs #:allow-other-keys)
821 (substitute* '("src/NoteTrack.cpp"
822 "src/AudioIO.cpp"
d75a0cd9
KK
823 "src/AudioIO.h"
824 "src/AudioIOBase.cpp")
3182a1d2
RW
825 (("../lib-src/portmidi/pm_common/portmidi.h") "portmidi.h")
826 (("../lib-src/portmidi/porttime/porttime.h") "porttime.h"))
827 (substitute* "src/prefs/MidiIOPrefs.cpp"
828 (("../../lib-src/portmidi/pm_common/portmidi.h") "portmidi.h"))
829 #t)))
cd381c31
KK
830 ;; The test suite is not "well exercised" according to the developers,
831 ;; and fails with various errors. See
832 ;; <http://sourceforge.net/p/audacity/mailman/message/33524292/>.
833 #:tests? #f))
2d5fa80e 834 (home-page "https://www.audacityteam.org/")
cd381c31
KK
835 (synopsis "Software for recording and editing sounds")
836 (description
837 "Audacity is a multi-track audio editor designed for recording, playing
838and editing digital audio. It features digital effects and spectrum analysis
839tools.")
840 (license license:gpl2+)))
841
a8e14943
HG
842(define-public audiofile
843 (package
844 (name "audiofile")
845 (version "0.3.6")
846 (source
847 (origin
848 (method url-fetch)
849 (uri (string-append
850 "https://audiofile.68k.org/audiofile-" version ".tar.gz"))
851 (sha256
852 (base32 "0rb927zknk9kmhprd8rdr4azql4gn2dp75a36iazx2xhkbqhvind"))
853 (patches
854 ;; CVE references according to nixpgs
855 (search-patches
856 "audiofile-fix-datatypes-in-tests.patch"
857 "audiofile-fix-sign-conversion.patch"
858 "audiofile-hurd.patch"
859 "audiofile-CVE-2015-7747.patch"
860 ;; CVE-2017-6829:
861 "audiofile-Fix-index-overflow-in-IMA.cpp.patch"
862 ;; CVE-2017-6827, CVE-2017-6828, CVE-2017-6832, CVE-2017-6835,
863 ;; CVE-2017-6837:
864 "audiofile-Check-the-number-of-coefficients.patch"
865 ;; CVE-2017-6839:
866 "audiofile-Fix-overflow-in-MSADPCM-decodeSam.patch"
867 ;; CVE-2017-6830, CVE-2017-6834, CVE-2017-6836, CVE-2017-6838:
868 "audiofile-Fix-multiply-overflow-sfconvert.patch"
869 "audiofile-signature-of-multiplyCheckOverflow.patch"
870 ;; CVE-2017-6831:
871 "audiofile-Fail-on-error-in-parseFormat.patch"
872 ;; CVE-2017-6833:
873 "audiofile-division-by-zero-BlockCodec-runPull.patch"
874 "audiofile-CVE-2018-13440.patch"
875 "audiofile-CVE-2018-17095.patch"))))
876 (build-system gnu-build-system)
877 (inputs
878 `(("alsa-lib" ,alsa-lib)))
879 (home-page "https://audiofile.68k.org/")
880 (synopsis "Library to handle various audio file formats")
881 (description "This is an open-source version of SGI's audiofile library.
882It provides a uniform programming interface for processing of audio data to
883and from audio files of many common formats.
884
885Currently supported file formats include AIFF/AIFF-C, WAVE, and NeXT/Sun
886.snd/.au, BICS, and raw data. Supported compression formats are currently
887G.711 mu-law and A-law.")
888 (license license:lgpl2.1+)))
889
c3276dbe
TW
890(define-public autotalent
891 (package
892 (name "autotalent")
893 (version "0.2")
894 (source (origin
895 (method url-fetch)
896 (uri (string-append "http://tombaran.info/autotalent-"
897 version ".tar.gz"))
898 (sha256
899 (base32
900 "1n04qm66f14195ly6gsy3ra7v2j7zad5n19d8dwfmh0qs6h9hphh"))))
901 (build-system gnu-build-system)
902 (arguments
903 `(#:tests? #f ; no check target
904 #:phases
905 (modify-phases %standard-phases
906 ;; no configure script
907 (delete 'configure)
908 (add-before 'install 'prepare-target-directory
909 (lambda* (#:key outputs #:allow-other-keys)
910 (mkdir-p (string-append (assoc-ref outputs "out") "/lib/ladspa"))
911 #t))
912 (add-after 'unpack 'override-target-directory
913 (lambda* (#:key outputs #:allow-other-keys)
914 (substitute* "Makefile"
915 (("/usr/lib64/ladspa")
916 (string-append (assoc-ref outputs "out") "/lib/ladspa")))
917 #t)))))
918 (inputs
919 `(("ladspa" ,ladspa)))
920 (home-page "http://tombaran.info/autotalent.html")
921 (synopsis "Pitch-correction LADSPA audio plugin")
922 (description
923 "Autotalent is a LADSPA plugin for real-time pitch-correction. Among its
924controls are allowable notes, strength of correction, LFO for vibrato and
925formant warp.")
926 ;; All code except the FFT routine is licensed under GPLv2+.
927 ;; The FFT routine is under BSD-3.
242b29ba 928 (license license:gpl2+)))
c3276dbe 929
497e9a82
RW
930(define-public azr3
931 (package
932 (name "azr3")
933 (version "1.2.3")
934 (source (origin
935 (method url-fetch)
936 (uri (string-append "mirror://savannah/ll-plugins/azr3-jack-"
937 version
938 ".tar.bz2"))
939 (sha256
940 (base32
204adc30
RW
941 "18mdw6nc0vgj6k9rsy0x8w64wvzld0frqshrxxbxfj9qi9843vlc"))
942 (patches (search-patches "azr3.patch"))))
497e9a82
RW
943 (build-system gnu-build-system)
944 (arguments
945 `(#:tests? #f ; no check target
946 #:make-flags
947 (list "LV2PEG=ttl2c"
948 (string-append "prefix=" %output)
ef1f9acf
RW
949 (string-append "pkgdatadir=" %output "/share/azr3-jack"))
950 #:phases
951 (modify-phases %standard-phases
952 (add-before 'install 'fix-timestamp
953 (lambda _
954 (let ((early-1980 315619200)) ; 1980-01-02 UTC
955 (utime "azr3.1" early-1980 early-1980))
956 #t)))))
497e9a82
RW
957 (inputs
958 `(("gtkmm" ,gtkmm-2)
959 ("lvtk" ,lvtk)
960 ("jack" ,jack-1)
f753846b 961 ("lash" ,lash)))
497e9a82
RW
962 (native-inputs
963 `(("pkg-config" ,pkg-config)))
964 (home-page "http://ll-plugins.nongnu.org/azr3/")
965 (synopsis "Tonewheel organ synthesizer")
966 (description
967 "AZR-3 is a port of the free VST plugin AZR-3. It is a tonewheel organ
968with drawbars, distortion and rotating speakers. The organ has three
969sections, two polyphonic sections with nine drawbars each and one monophonic
970bass section with five drawbars. A standalone JACK application and LV2
971plugins are provided.")
972 (license license:gpl2)))
973
f62a8417
RW
974(define-public calf
975 (package
976 (name "calf")
c8de7979 977 (version "0.90.3")
f62a8417
RW
978 (source (origin
979 (method url-fetch)
8f946a18 980 (uri (string-append "https://calf-studio-gear.org/files/calf-"
73cea74d 981 version ".tar.gz"))
f62a8417
RW
982 (sha256
983 (base32
c8de7979 984 "17x4hylgq4dn9qycsdacfxy64f5cv57n2qgkvsdp524gnqzw4az3"))))
f62a8417
RW
985 (build-system gnu-build-system)
986 (inputs
987 `(("fluidsynth" ,fluidsynth)
988 ("expat" ,expat)
989 ("glib" ,glib)
990 ("gtk" ,gtk+-2)
991 ("cairo" ,cairo)
992 ("lash" ,lash)
993 ("jack" ,jack-1)
994 ("lv2" ,lv2)
995 ("ladspa" ,ladspa)
996 ("fftw" ,fftw)))
997 (native-inputs
998 `(("pkg-config" ,pkg-config)))
999 (native-search-paths
1000 (list (search-path-specification
1001 (variable "LV2_PATH")
1002 (files '("lib/lv2")))))
1003 (home-page "http://calf.sourceforge.net/")
1004 (synopsis "Audio plug-in pack for LV2 and JACK environments")
1005 (description
1006 "Calf Studio Gear is an audio plug-in pack for LV2 and JACK environments.
1007The suite contains lots of effects (delay, modulation, signal processing,
1008filters, equalizers, dynamics, distortion and mastering effects),
1009instruments (SF2 player, organ simulator and a monophonic synthesizer) and
1010tools (analyzer, mono/stereo tools, crossovers).")
1011 ;; calfjackhost is released under GPLv2+
1012 ;; The plugins are released under LGPLv2.1+
1013 (license (list license:lgpl2.1+ license:gpl2+))))
1014
7a44e875
TW
1015(define-public caps-plugins-lv2
1016 (package
1017 (name "caps-plugins-lv2")
1018 (version "0.9.24") ; version that has been ported.
1019 (source
1020 (origin
1021 ;; The Github project hasn't tagged a release.
1022 (method git-fetch)
1023 (uri (git-reference
1024 ;; Actually https://github.com/moddevices/caps-lv2.git, but it's
1025 ;; missing fixes for newer glibc, so using the origin of a pull
1026 ;; request regarding this issue:
b0e7b699 1027 (url "https://github.com/jujudusud/caps-lv2")
7a44e875
TW
1028 (commit "9c9478b7fbd8f9714f552ebe2a6866398b0babfb")))
1029 (file-name (git-file-name name version))
1030 (sha256
1031 (base32
1032 "1idfnazin3cca41zw1a8vwgnxjnkrap7bxxjamjqvgpmvydgcam1"))))
1033 (build-system gnu-build-system)
1034 (arguments
1035 `(#:tests? #f ; no check target
1036 #:phases
1037 (modify-phases %standard-phases
1038 ;; no configure script
1039 (delete 'configure)
1040 (add-after 'unpack 'override-target-directory
1041 (lambda* (#:key outputs #:allow-other-keys)
1042 (substitute* (find-files "plugins" "Makefile")
1043 (("/usr/local")(assoc-ref outputs "out")))
1044 #t)))))
1045 (inputs
1046 `(("lv2" ,lv2)))
1047 ;; home-page of the original LADSPA version: http://quitte.de/dsp/caps.html
1048 (home-page "https://github.com/moddevices/caps-lv2")
1049 (synopsis "LV2 port of the CAPS audio plugin colection")
1050 (description
1051 "LV2 port of CAPS, a collection of audio plugins comprising basic virtual
1052guitar amplification and a small range of classic effects, signal processors and
1053generators of mostly elementary and occasionally exotic nature.")
1054 (license license:gpl3+)))
1055
8f941dd2
RW
1056(define-public infamous-plugins
1057 (package
1058 (name "infamous-plugins")
d11edbdf 1059 (version "0.2.04")
8f941dd2 1060 (source (origin
0b8db035
RW
1061 (method git-fetch)
1062 (uri (git-reference
b0e7b699 1063 (url "https://github.com/ssj71/infamousPlugins")
0b8db035
RW
1064 (commit (string-append "v" version))))
1065 (file-name (git-file-name name version))
8f941dd2
RW
1066 (sha256
1067 (base32
0b8db035 1068 "0hmqk80w4qxq09iag7b7srf2g0wigkyhzq0ywxvhz2iz0hq9k0dh"))))
8f941dd2 1069 (build-system cmake-build-system)
d6618941 1070 (arguments
d11edbdf 1071 `(#:tests? #f ; there are no tests
d6618941
EF
1072 #:phases
1073 (modify-phases %standard-phases
1074 (add-after 'unpack 'remove-compiler-flags
1075 (lambda _
3e0e9e16 1076 (substitute* (find-files "." "CMakeLists.txt")
d11edbdf 1077 (("-msse2 -mfpmath=sse") ""))
d6618941 1078 #t)))))
8f941dd2
RW
1079 (inputs
1080 `(("cairo" ,cairo)
1081 ("fftwf" ,fftwf)
1082 ("lv2" ,lv2)
1083 ("ntk" ,ntk)
1084 ("zita-resampler" ,zita-resampler)))
1085 (native-inputs
1086 `(("pkg-config" ,pkg-config)))
a9071e5c 1087 (home-page "https://ssj71.github.io/infamousPlugins")
8f941dd2
RW
1088 (synopsis "LV2 plugins for live use")
1089 (description
1090 "The infamous plugins are a collection of LV2 audio plugins for live
1091performances. The plugins include a cellular automaton synthesizer, an
1092envelope follower, distortion effects, tape effects and more.")
1093 (license license:gpl2+)))
1094
7366d831
OP
1095(define-public swh-plugins
1096 (package
1097 (name "swh-plugins")
1098 (version "0.4.17")
1099 (source (origin
1100 (method git-fetch)
1101 (uri (git-reference
b0e7b699 1102 (url "https://github.com/swh/ladspa")
7366d831
OP
1103 (commit (string-append "v" version))))
1104 (file-name (git-file-name name version))
1105 (sha256
1106 (base32
1107 "1c98z2xxz9pgcb4dg99gz8qrylh5cnag0j18a52d88ifsy24isvq"))))
1108 (native-inputs
1109 `(("autoconf" ,autoconf)
1110 ("automake" ,automake)
1111 ("gettext" ,gettext-minimal) ;for autopoint
1112 ("libtool" ,libtool)
1113 ("perl" ,perl)
1114 ("pkg-config" ,pkg-config)
1115 ("which" ,which)))
1116 (inputs
1117 `(("fftwf" ,fftwf)
1118 ("perl-xml-parser" ,perl-xml-parser)))
1119 (build-system gnu-build-system)
0daf7e26 1120 (home-page "http://plugin.org.uk")
7366d831
OP
1121 (synopsis "The SWH Plugins package for the LADSPA plugin system")
1122 (description "This package provides Steve Harris's LADSPA plugins.")
1123 (license license:gpl2+)))
1124
18f3d92b
FPS
1125(define-public swh-plugins-lv2
1126 (package
1127 (name "swh-plugins-lv2")
1128 (version "1.0.16")
1129 (source (origin
2ae23954
RW
1130 (method git-fetch)
1131 (uri (git-reference
b0e7b699 1132 (url "https://github.com/swh/lv2")
2ae23954
RW
1133 (commit (string-append "v" version))))
1134 (file-name (git-file-name name version))
18f3d92b
FPS
1135 (sha256
1136 (base32
2ae23954 1137 "0y7nnww864mm4k6ayy2lhcws3wlbhb2gkyjbrwk921fvc18qk9mz"))))
18f3d92b
FPS
1138 (build-system gnu-build-system)
1139 (arguments
1140 `(#:tests? #f ; no check target
1141 #:make-flags (list "CC=gcc"
1142 (string-append "PREFIX="
1143 (assoc-ref %outputs "out")))
1144 #:phases
1145 (modify-phases %standard-phases
1146 ;; no configure script
1147 (delete 'configure)
1148 (add-after 'unpack 'patch-makefile-and-enter-directory
1149 ;; The default install target doesn't install, but the
1150 ;; "install-system" target does.
1151 (lambda _
1152 (substitute* "Makefile"
1153 (("install:") "install: install-system"))
1154 #t)))))
1155 (inputs
1156 `(("lv2" ,lv2)
1157 ("fftwf" ,fftwf)))
1158 (native-inputs
1159 `(("libxslt" ,libxslt)
1160 ("pkg-config" ,pkg-config)))
1161 (home-page "http://plugin.org.uk")
1162 (synopsis "SWH plugins in LV2 format")
1163 (description
1164 "Swh-plugins-lv2 is a collection of audio plugins in LV2 format. Plugin
1165classes include: dynamics (compressor, limiter), time (delay, chorus,
1166flanger), ringmodulator, distortion, filters, pitchshift, oscillators,
1167emulation (valve, tape), bit fiddling (decimator, pointer-cast), etc.")
1168 (license license:gpl3+)))
1169
f5340e00
RW
1170(define-public tao
1171 (package
1172 (name "tao")
1173 (version "1.0-beta-10May2006")
1174 (source (origin
1175 (method url-fetch)
1176 (uri (string-append "mirror://sourceforge/taopm/Tao/"
1177 "tao-" version "/"
1178 "tao-" version ".tar.gz"))
1179 (sha256
1180 (base32
1181 "156py3g6mmglldfd0j76bn7n242hdwf49diaprjpj7crp8vgf2pz"))
1182 (patches
1183 (search-patches "tao-add-missing-headers.patch"
1184 "tao-fix-parser-types.patch"))
1185 (modules '((guix build utils)))
1186 (snippet
1187 '(begin
1188 (substitute* "configure"
1189 (("SHELL=/bin/sh") ""))
1190 #t))))
1191 (build-system gnu-build-system)
1192 (arguments
1193 '(#:configure-flags '("TAO_RELEASE=-beta")
1194 #:phases
1195 (modify-phases %standard-phases
1196 (add-after 'unpack 'fix-references
1197 (lambda* (#:key outputs #:allow-other-keys)
1198 (substitute* "user-scripts/tao.in"
1199 (("taoparse")
1200 (string-append (assoc-ref outputs "out") "/bin/taoparse"))
1201 (("grep") (which "grep"))
1202 (("sed -f \\$distdir/user-scripts/")
1203 (string-append (which "sed") " -f $distdir/"))
1204 (("distdir=.*")
1205 (string-append "distdir="
1206 (assoc-ref outputs "out") "/share/tao")))
1207 #t))
1208 (add-after 'install 'install-extra-files
1209 (lambda* (#:key outputs #:allow-other-keys)
1210 (let* ((out (assoc-ref outputs "out"))
1211 (share (string-append out "/share/tao/"))
1212 (inc (string-append out "/include/tao/")))
1213 (mkdir-p share)
1214 (mkdir-p inc)
1215 (install-file "user-scripts/error.parse" share)
1216 (copy-recursively "examples" (string-append share "examples"))
1217 (for-each (lambda (file) (install-file file inc))
1218 (find-files "include" "\\.h"))
1219 #t))))))
1220 (inputs
1221 `(("audiofile" ,audiofile)
1222 ("libxi" ,libxi)
1223 ("libxmu" ,libxmu)
1224 ("mesa" ,mesa)
1225 ("glut" ,freeglut)
1226 ("flex" ,flex)
1227 ("bison" ,bison)
1228 ("sed" ,sed)
1229 ("grep" ,grep)))
1230 (home-page "http://taopm.sourceforge.net/")
1231 (synopsis "Sound Synthesis with Physical Models")
1232 (description "Tao is a software package for sound synthesis using physical
1233models. It provides a virtual acoustic material constructed from masses and
1234springs which can be used as the basis for building quite complex virtual
1235musical instruments. Tao comes with a synthesis language for creating and
1236playing instruments and a C++ API for those who would like to use it as an
1237object library.")
1238 (license license:gpl2+)))
1239
fda85ca6
RW
1240(define-public csound
1241 (package
1242 (name "csound")
d818256e
NG
1243 (version "6.14.0")
1244 (source
1245 (origin
1246 (method git-fetch)
1247 (uri (git-reference
b0e7b699 1248 (url "https://github.com/csound/csound")
d818256e
NG
1249 (commit version)))
1250 (file-name (git-file-name name version))
1251 (sha256
1252 (base32 "1sr9knfhbm2m0wpkjq2l5n471vnl51wy4p6j4m95zqybimzb4s2j"))))
fda85ca6 1253 (build-system cmake-build-system)
fda85ca6
RW
1254 (native-inputs
1255 `(("bison" ,bison)
1256 ("flex" ,flex)
d818256e 1257 ("gettext" ,gettext-minimal)
fda85ca6 1258 ("zlib" ,zlib)))
d818256e
NG
1259 (inputs
1260 `(("alsa-lib" ,alsa-lib)
1261 ("boost" ,boost)
1262 ("jack" ,jack-1)
1263 ("ladspa" ,ladspa)
1264 ("liblo" ,liblo)
1265 ("libsndfile" ,libsndfile)
1266 ("pulseaudio" ,pulseaudio)))
40f856fa 1267 (home-page "https://csound.com/")
fda85ca6
RW
1268 (synopsis "Sound and music computing system")
1269 (description
1270 "Csound is a user-programmable and user-extensible sound processing
1271language and software synthesizer.")
1272 (license license:lgpl2.1+)))
1273
631ac903
RW
1274(define-public clalsadrv
1275 (package
1276 (name "clalsadrv")
1277 (version "2.0.0")
1278 (source (origin
1279 (method url-fetch)
1280 (uri (string-append
1281 "http://kokkinizita.linuxaudio.org"
1282 "/linuxaudio/downloads/clalsadrv-"
1283 version ".tar.bz2"))
1284 (sha256
1285 (base32
9de2e43c 1286 "0bsacx3l9065gk8g4137qmz2ij7s9x06aldvacinzlcslw7bd1kq"))))
631ac903
RW
1287 (build-system gnu-build-system)
1288 (arguments
1289 `(#:tests? #f ; no "check" target
1290 #:make-flags (list (string-append "PREFIX=" (assoc-ref %outputs "out")))
1291 #:phases
dc1d3cde
KK
1292 (modify-phases %standard-phases
1293 (add-after 'unpack 'patch-makefile-and-enter-directory
1294 (lambda _
1295 (substitute* "libs/Makefile"
1296 (("/sbin/ldconfig") "true")
1297 (("^LIBDIR =.*") "LIBDIR = lib\n"))
1298 (chdir "libs")
1299 #t))
1300 (add-after 'install 'install-symlink
1301 (lambda _
1302 (symlink "libclalsadrv.so"
1303 (string-append (assoc-ref %outputs "out")
ee527187
MW
1304 "/lib/libclalsadrv.so.2"))
1305 #t))
631ac903 1306 ;; no configure script
4f27a333 1307 (delete 'configure))))
631ac903
RW
1308 (inputs
1309 `(("alsa-lib" ,alsa-lib)
1310 ("fftw" ,fftw)))
4817bb92 1311 (home-page "https://kokkinizita.linuxaudio.org")
631ac903
RW
1312 (synopsis "C++ wrapper around the ALSA API")
1313 (description
1314 "clalsadrv is a C++ wrapper around the ALSA API simplifying access to
1315ALSA PCM devices.")
1316 (license license:gpl2+)))
1317
8ba62f92
RW
1318(define-public amb-plugins
1319 (package
1320 (name "amb-plugins")
1321 (version "0.8.1")
1322 (source (origin
1323 (method url-fetch)
1324 (uri (string-append
1325 "http://kokkinizita.linuxaudio.org"
1326 "/linuxaudio/downloads/AMB-plugins-"
1327 version ".tar.bz2"))
1328 (sha256
1329 (base32
1330 "0x4blm4visjqj0ndqr0cg776v3b7lvplpc8cgi9n51llhavn0jpl"))))
1331 (build-system gnu-build-system)
1332 (arguments
1333 `(#:tests? #f ; no "check" target
1334 #:phases
1335 (modify-phases %standard-phases
1336 ;; no configure script
1337 (delete 'configure)
1338 (add-before 'install 'prepare-target-directory
1339 (lambda* (#:key outputs #:allow-other-keys)
1340 (mkdir-p (string-append (assoc-ref outputs "out") "/lib/ladspa"))
1341 #t))
1342 (add-after 'unpack 'override-target-directory-and-tool-paths
1343 (lambda* (#:key outputs #:allow-other-keys)
1344 (substitute* "Makefile"
1345 (("/usr/lib/ladspa")
1346 (string-append (assoc-ref outputs "out") "/lib/ladspa"))
1347 (("/usr/bin/install") (which "install"))
1348 (("/bin/rm") "#"))
1349 #t)))))
4817bb92 1350 (home-page "https://kokkinizita.linuxaudio.org")
8ba62f92
RW
1351 (synopsis "LADSPA ambisonics plugins")
1352 (description
1353 "The AMB plugins are a set of LADSPA ambisonics plugins, mainly to be
1354used within Ardour. Features include: mono and stereo to B-format panning,
1355horizontal rotator, square, hexagon and cube decoders.")
1356 (license license:gpl2+)))
1357
fb2e072c
RW
1358(define-public mcp-plugins
1359 (package
1360 (name "mcp-plugins")
1361 (version "0.4.0")
1362 (source (origin
1363 (method url-fetch)
1364 (uri (string-append
1365 "http://kokkinizita.linuxaudio.org"
1366 "/linuxaudio/downloads/MCP-plugins-"
1367 version ".tar.bz2"))
1368 (sha256
1369 (base32
1370 "06a9r1l85jmg7l1cvc3788mk8ra0xagjfy1rmhw3b80y4n0vlnvc"))))
1371 (build-system gnu-build-system)
1372 (arguments
1373 `(#:tests? #f ; no "check" target
1374 #:phases
1375 (modify-phases %standard-phases
1376 ;; no configure script
1377 (delete 'configure)
1378 (add-before 'install 'prepare-target-directory
1379 (lambda* (#:key outputs #:allow-other-keys)
1380 (mkdir-p (string-append (assoc-ref outputs "out") "/lib/ladspa"))
1381 #t))
1382 (add-after 'unpack 'override-target-directory
1383 (lambda* (#:key outputs #:allow-other-keys)
1384 (substitute* "Makefile"
1385 (("/usr") (assoc-ref outputs "out")))
1386 #t)))))
4817bb92 1387 (home-page "https://kokkinizita.linuxaudio.org")
fb2e072c
RW
1388 (synopsis "Chorus, phaser, and vintage high-pass and low-pass filters")
1389 (description
1390 "This package provides various LADSPA plugins. @code{cs_chorus} and
1391@code{cs_phaser} provide chorus and phaser effects, respectively;
1392@code{mvclpf24} provides four implementations of the low-pass filter used in
1393vintage Moog synthesizers; @code{mvchpf24} is based on the voltage-controlled
1394high-pass filter by Robert Moog. The filters attempt to accurately emulate
1395the non-linear circuit elements of their original analog counterparts.")
1396 (license license:gpl2+)))
1397
dffb6c3b
RW
1398(define-public rev-plugins
1399 (package
1400 (name "rev-plugins")
1401 (version "0.7.1")
1402 (source (origin
1403 (method url-fetch)
1404 (uri (string-append
1405 "http://kokkinizita.linuxaudio.org"
1406 "/linuxaudio/downloads/REV-plugins-"
1407 version ".tar.bz2"))
1408 (sha256
1409 (base32
1410 "1ikpinxm00pkfi259bnkzhsy3miagrjgdihaaf5x4v7zac29j3g7"))))
1411 (build-system gnu-build-system)
1412 (arguments
1413 `(#:tests? #f ; no "check" target
1414 #:phases
1415 (modify-phases %standard-phases
1416 ;; no configure script
1417 (delete 'configure)
1418 (add-before 'install 'prepare-target-directory
1419 (lambda* (#:key outputs #:allow-other-keys)
1420 (mkdir-p (string-append (assoc-ref outputs "out") "/lib/ladspa"))
1421 #t))
1422 (add-after 'unpack 'override-target-directory
1423 (lambda* (#:key outputs #:allow-other-keys)
1424 (substitute* "Makefile"
1425 (("/usr") (assoc-ref outputs "out")))
1426 #t)))))
4817bb92 1427 (home-page "https://kokkinizita.linuxaudio.org")
dffb6c3b
RW
1428 (synopsis "LADSPA reverb plugin")
1429 (description
1430 "This package provides a stereo reverb LADSPA plugin based on the
1431well-known greverb.")
1432 (license license:gpl2+)))
1433
75f45d16
RW
1434(define-public fil-plugins
1435 (package
1436 (name "fil-plugins")
1437 (version "0.3.0")
1438 (source (origin
1439 (method url-fetch)
1440 (uri (string-append
1441 "http://kokkinizita.linuxaudio.org"
1442 "/linuxaudio/downloads/FIL-plugins-"
1443 version ".tar.bz2"))
1444 (sha256
1445 (base32
1446 "1scfv9j7jrp50r565haa4rvxn1vk2ss86xssl5qgcr8r45qz42qw"))))
1447 (build-system gnu-build-system)
1448 (arguments
1449 `(#:tests? #f ; no "check" target
1450 #:phases
1451 (modify-phases %standard-phases
1452 ;; no configure script
1453 (delete 'configure)
1454 (add-before 'install 'prepare-target-directory
1455 (lambda* (#:key outputs #:allow-other-keys)
1456 (mkdir-p (string-append (assoc-ref outputs "out") "/lib/ladspa"))
1457 #t))
1458 (add-after 'unpack 'override-target-directory
1459 (lambda* (#:key outputs #:allow-other-keys)
1460 (substitute* "Makefile"
1461 (("/usr") (assoc-ref outputs "out")))
1462 #t)))))
4817bb92 1463 (home-page "https://kokkinizita.linuxaudio.org")
75f45d16
RW
1464 (synopsis "LADSPA four-band parametric equalizer plugin")
1465 (description
1466 "This package provides a LADSPA plugin for a four-band parametric
1467equalizer. Each section has an active/bypass switch, frequency, bandwidth and
1468gain controls. There is also a global bypass switch and gain control.
1469
1470The 2nd order resonant filters are implemented using a Mitra-Regalia style
1471lattice filter, which is stable even while parameters are being changed.
1472
36a4366d 1473All switches and controls are internally smoothed, so they can be used @code{live}
75f45d16
RW
1474without any clicks or zipper noises. This makes this plugin suitable for use
1475in systems that allow automation of plugin control ports, such as Ardour, or
1476for stage use.")
1477 (license license:gpl2+)))
1478
c04b4e7a
RW
1479(define-public ste-plugins
1480 (package
1481 (name "ste-plugins")
1482 (version "0.0.2")
1483 (source (origin
1484 (method url-fetch)
1485 (uri (string-append
1486 "http://kokkinizita.linuxaudio.org"
1487 "/linuxaudio/downloads/STE-plugins-"
1488 version ".tar.bz2"))
1489 (sha256
1490 (base32
1491 "0s3c9w5xihs87cnd1lh9xgj3maabjdyh6bl766qp5lhkg3ax8zy6"))))
1492 (build-system gnu-build-system)
1493 (arguments
1494 `(#:tests? #f ; no "check" target
1495 #:phases
1496 (modify-phases %standard-phases
1497 ;; no configure script
1498 (delete 'configure)
1499 (add-before 'install 'prepare-target-directory
1500 (lambda* (#:key outputs #:allow-other-keys)
1501 (mkdir-p (string-append (assoc-ref outputs "out") "/lib/ladspa"))
1502 #t))
1503 (add-after 'unpack 'override-target-directory
1504 (lambda* (#:key outputs #:allow-other-keys)
1505 (substitute* "Makefile"
1506 (("/usr") (assoc-ref outputs "out")))
1507 #t)))))
4817bb92 1508 (home-page "https://kokkinizita.linuxaudio.org")
c04b4e7a
RW
1509 (synopsis "LADSPA stereo width plugin")
1510 (description
1511 "This package provides a LADSPA plugin to manipulate the stereo width of
1512audio signals.")
1513 (license license:gpl2+)))
1514
eb4fca7e
RW
1515(define-public vco-plugins
1516 (package
1517 (name "vco-plugins")
1518 (version "0.3.0")
1519 (source (origin
1520 (method url-fetch)
1521 (uri (string-append
1522 "http://kokkinizita.linuxaudio.org"
1523 "/linuxaudio/downloads/VCO-plugins-"
1524 version ".tar.bz2"))
1525 (sha256
1526 (base32
1527 "1xzqdg3b07r7zww05y9bb737l9dxvfkv28m3fyak1aazaci3rsgl"))))
1528 (build-system gnu-build-system)
1529 (arguments
1530 `(#:tests? #f ; no "check" target
1531 #:phases
1532 (modify-phases %standard-phases
1533 ;; no configure script
1534 (delete 'configure)
1535 (add-before 'install 'prepare-target-directory
1536 (lambda* (#:key outputs #:allow-other-keys)
1537 (mkdir-p (string-append (assoc-ref outputs "out") "/lib/ladspa"))
1538 #t))
1539 (add-after 'unpack 'override-target-directory
1540 (lambda* (#:key outputs #:allow-other-keys)
1541 (substitute* "Makefile"
1542 (("/usr") (assoc-ref outputs "out"))
1543 (("/bin/cp") (which "cp")))
1544 #t)))))
4817bb92 1545 (home-page "https://kokkinizita.linuxaudio.org")
eb4fca7e
RW
1546 (synopsis "LADSPA plugin for synthesizer oscillators")
1547 (description
1548 "The @code{blvco} LADSPA plugin provides three anti-aliased oscillators:
1549
1550@enumerate
1551@item Pulse-VCO, a dirac pulse oscillator with flat amplitude spectrum
1552@item Saw-VCO, a sawtooth oscillator with 1/F amplitude spectrum
947b3ac6 1553@item Rec-VCO, a square / rectangle oscillator
eb4fca7e
RW
1554@end enumerate\n
1555
1556All oscillators are low-pass filtered to provide waveforms similar to the
1557output of analog synthesizers such as the Moog Voyager.")
1558 (license license:gpl2+)))
1559
5e3161d3
RW
1560(define-public wah-plugins
1561 (package
1562 (name "wah-plugins")
1563 (version "0.1.0")
1564 (source (origin
1565 (method url-fetch)
1566 (uri (string-append
1567 "http://kokkinizita.linuxaudio.org"
1568 "/linuxaudio/downloads/WAH-plugins-"
1569 version ".tar.bz2"))
1570 (sha256
1571 (base32
1572 "1wkbjarxdhjixkh7d5abralj11dj2xxg644fz3ycd7qyfgfvjfgd"))))
1573 (build-system gnu-build-system)
1574 (arguments
1575 `(#:tests? #f ; no "check" target
1576 #:phases
1577 (modify-phases %standard-phases
1578 ;; no configure script
1579 (delete 'configure)
1580 (add-before 'install 'prepare-target-directory
1581 (lambda* (#:key outputs #:allow-other-keys)
1582 (mkdir-p (string-append (assoc-ref outputs "out") "/lib/ladspa"))
1583 #t))
1584 (add-after 'unpack 'override-target-directory
1585 (lambda* (#:key outputs #:allow-other-keys)
1586 (substitute* "Makefile"
1587 (("/usr") (assoc-ref outputs "out")))
1588 #t)))))
4817bb92 1589 (home-page "https://kokkinizita.linuxaudio.org")
5e3161d3
RW
1590 (synopsis "LADSPA Autowah effect plugin")
1591 (description
1592 "This package provides a LADSPA plugin for a Wah effect with envelope
1593follower.")
1594 (license license:gpl2+)))
1595
ed17465d
RW
1596(define-public g2reverb
1597 (package
1598 (name "g2reverb")
1599 (version "0.7.1")
1600 (source (origin
1601 (method url-fetch)
1602 (uri (string-append
1603 "http://kokkinizita.linuxaudio.org"
1604 "/linuxaudio/downloads/g2reverb-"
1605 version ".tar.bz2"))
1606 (sha256
1607 (base32
1608 "18wb8vj1kky5glr76s34awbi8qzplsmf3wjbd7a12hfv4j0bkwrj"))))
1609 (build-system gnu-build-system)
1610 (arguments
1611 `(#:tests? #f ; no "check" target
1612 #:phases
1613 (modify-phases %standard-phases
1614 ;; no configure script
1615 (delete 'configure)
1616 (add-before 'install 'prepare-target-directory
1617 (lambda* (#:key outputs #:allow-other-keys)
1618 (mkdir-p (string-append (assoc-ref outputs "out") "/lib/ladspa"))
1619 #t))
1620 (add-after 'unpack 'override-target-directory
1621 (lambda* (#:key outputs #:allow-other-keys)
1622 (substitute* "Makefile"
1623 (("/usr") (assoc-ref outputs "out")))
1624 #t)))))
4817bb92 1625 (home-page "https://kokkinizita.linuxaudio.org")
ed17465d
RW
1626 (synopsis "LADSPA stereo reverb plugin")
1627 (description
1628 "This package provides a LADSPA plugin for a stereo reverb effect.")
1629 (license license:gpl2+)))
1630
e4f43b56
RW
1631(define-public fluidsynth
1632 (package
1633 (name "fluidsynth")
7e482107 1634 (version "2.1.4")
e4f43b56 1635 (source (origin
dd46c16b
RW
1636 (method git-fetch)
1637 (uri (git-reference
b0e7b699 1638 (url "https://github.com/FluidSynth/fluidsynth")
dd46c16b 1639 (commit (string-append "v" version))))
94781b79 1640 (file-name (git-file-name name version))
e4f43b56
RW
1641 (sha256
1642 (base32
7e482107 1643 "1r3khwyw57ybg5m4x0rvdzq7hgw2484sd52k6bm19akbw8yicfna"))))
dd46c16b 1644 (build-system cmake-build-system)
e4f43b56 1645 (arguments
713b519e 1646 '(#:tests? #f ; no check target
dd46c16b 1647 #:phases
dc1d3cde 1648 (modify-phases %standard-phases
dd46c16b
RW
1649 (add-after 'unpack 'fix-libdir
1650 (lambda _
713b519e 1651 ;; Install libraries to /lib, not /lib64.
dd46c16b
RW
1652 (substitute* "CMakeLists.txt"
1653 (("LIB_SUFFIX \\$\\{_init_lib_suffix\\}")
1654 "LIB_SUFFIX \"\""))
1655 #t)))))
e4f43b56
RW
1656 (inputs
1657 `(("libsndfile" ,libsndfile)
1658 ("alsa-lib" ,alsa-lib)
1659 ("jack" ,jack-1)
1660 ("ladspa" ,ladspa)
1661 ("lash" ,lash)
1662 ("readline" ,readline)
1663 ("glib" ,glib)))
1664 (native-inputs
1665 `(("pkg-config" ,pkg-config)))
1666 (home-page "http://www.fluidsynth.org/")
1667 (synopsis "SoundFont synthesizer")
1668 (description
1669 "FluidSynth is a real-time software synthesizer based on the SoundFont 2
1670specifications. FluidSynth reads and handles MIDI events from the MIDI input
e881752c 1671device. It is the software analogue of a MIDI synthesizer. FluidSynth can
e4f43b56 1672also play midifiles using a Soundfont.")
dd46c16b 1673 (license license:lgpl2.1+)))
e4f43b56 1674
9b6dc31b
MB
1675;; gzdoom@3.3.0 and lmms@1.1.3 requires this version. Remove once no longer
1676;; needed.
1677(define-public fluidsynth-1
1678 (package
1679 (inherit fluidsynth)
1680 (version "1.1.11")
1681 (source (origin
1682 (inherit (package-source fluidsynth))
1683 (uri (git-reference
1684 (url "https://github.com/FluidSynth/fluidsynth")
1685 (commit (string-append "v" version))))
1686 (file-name (git-file-name "fluidsynth" version))
1687 (sha256
1688 (base32
1689 "0n75jq3xgq46hfmjkaaxz3gic77shs4fzajq40c8gk043i84xbdh"))))))
1690
70fc29d9
TUBK
1691(define-public faad2
1692 (package
1693 (name "faad2")
31f226c4
RG
1694 (version "2.8.8")
1695 (source
1696 (origin
1697 (method url-fetch)
1698 (uri
1699 (string-append "mirror://sourceforge/faac/faad2-src/faad2-"
1700 (version-major+minor version) ".0/"
1701 "faad2-" version ".tar.gz"))
1702 (sha256
1703 (base32 "0va284hndhn0ynm4lyn219qw4y8wa4agfkqgwlaji7bqp6nkyp4q"))))
70fc29d9 1704 (build-system gnu-build-system)
df2f7f5b 1705 (home-page "https://www.audiocoding.com/faad2.html")
70fc29d9
TUBK
1706 (synopsis "MPEG-4 and MPEG-2 AAC decoder")
1707 (description
df2f7f5b 1708 "FAAD2 is an MPEG-4 and MPEG-2 AAC decoder supporting LC, Main, LTP, SBR, -PS, and DAB+.")
31f226c4 1709 (license license:gpl2+)))
70fc29d9 1710
777291f0
RW
1711(define-public faust
1712 (package
1713 (name "faust")
a3604742 1714 (version "0.9.90")
777291f0 1715 (source (origin
a3604742
RW
1716 (method git-fetch)
1717 (uri (git-reference
b0e7b699 1718 (url "https://github.com/grame-cncm/faust")
a3604742
RW
1719 (commit (string-append "v"
1720 (string-map (lambda (c)
1721 (if (char=? c #\.) #\- c))
1722 version)))))
1723 (file-name (string-append "faust-" version "-checkout"))
777291f0
RW
1724 (sha256
1725 (base32
a3604742 1726 "0qc6iwjd3i80jdyjc186c6ywipmjzl8wlsp4050pbr56q4rlkd4z"))))
777291f0
RW
1727 (build-system gnu-build-system)
1728 (arguments
1729 `(#:make-flags (list (string-append "prefix=" (assoc-ref %outputs "out")))
1730 #:tests? #f
1731 #:phases
1732 (modify-phases %standard-phases
0543c326 1733 ;; no "configure" script
a3604742
RW
1734 (delete 'configure)
1735 ;; Files appear under $out/share/faust that are read-only. The
1736 ;; install phase tries to overwrite them and fails, so we change
1737 ;; the permissions first.
1738 (add-before 'install 'fix-permissions
1739 (lambda _
1740 (for-each (lambda (file)
1741 (chmod file #o644))
1742 (find-files "architecture/max-msp" ".*"))
1743 #t)))))
777291f0
RW
1744 (native-inputs
1745 `(("unzip" ,unzip)))
62f6f9d9 1746 (home-page "https://faust.grame.fr/")
777291f0
RW
1747 (synopsis "Signal processing language")
1748 (description
1749 "Faust is a programming language for realtime audio signal processing.")
1750 (license license:gpl2+)))
1751
8ae60404
RW
1752(define-public faust-2
1753 (package
1754 (inherit faust)
89c78948 1755 (version "2.5.23")
8ae60404 1756 (source (origin
89c78948
RW
1757 (method url-fetch)
1758 (uri (string-append "https://github.com/grame-cncm/faust/"
1759 "releases/download/" version
1760 "/faust-" version ".tar.gz"))
8ae60404
RW
1761 (sha256
1762 (base32
89c78948 1763 "1yz5jnr76hh7rmxkpdi7gyrw1wp4gyqfpq8zyl97qdi5ga5gjznq"))))
8ae60404
RW
1764 (build-system gnu-build-system)
1765 (arguments
1766 (substitute-keyword-arguments (package-arguments faust)
1767 ((#:make-flags flags)
1768 `(list (string-append "prefix=" (assoc-ref %outputs "out"))
75bbc3c2 1769 "world"))))
8ae60404 1770 (native-inputs
fc9dbf41 1771 `(("llvm" ,llvm-3.8)
8ae60404 1772 ("which" ,which)
9fc513ad 1773 ("xxd" ,xxd)
8ae60404
RW
1774 ("ctags" ,emacs-minimal) ; for ctags
1775 ("pkg-config" ,pkg-config)))
1776 (inputs
1777 `(("libsndfile" ,libsndfile)
1778 ("libmicrohttpd" ,libmicrohttpd)
1779 ("ncurses" ,ncurses)
1780 ("openssl" ,openssl)
1781 ("zlib" ,zlib)))))
1782
7c92efff
RW
1783(define-public freepats
1784 (package
1785 (name "freepats")
1786 (version "20060219")
1787 (source (origin
1788 (method url-fetch)
1789 (uri (string-append "http://freepats.zenvoid.org/freepats-"
1790 version ".tar.bz2"))
1791 (sha256
1792 (base32
1793 "12iw36rd94zirll96cd5k0va7p5hxmf2shvjlhzihcmjaw8flq82"))))
1794 (build-system trivial-build-system)
1795 (arguments
1796 `(#:modules ((guix build utils))
1797 #:builder (begin
1798 (use-modules (guix build utils))
1799 (let ((out (string-append %output "/share/freepats")))
1800 (setenv "PATH" (string-append
1801 (assoc-ref %build-inputs "bzip2") "/bin:"
1802 (assoc-ref %build-inputs "tar") "/bin"))
e3cfef22 1803 (invoke "tar" "xvf" (assoc-ref %build-inputs "source"))
7c92efff
RW
1804 (chdir "freepats")
1805 ;; Use absolute pattern references
1806 (substitute* "freepats.cfg"
1807 (("Tone_000") (string-append out "/Tone_000"))
1808 (("Drum_000") (string-append out "/Drum_000")))
1809 (mkdir-p out)
e3cfef22
MW
1810 (copy-recursively "." out)
1811 #t))))
7c92efff
RW
1812 (native-inputs
1813 `(("tar" ,tar)
1814 ("bzip2" ,bzip2)))
1815 (home-page "http://freepats.zenvoid.org")
1816 (synopsis "GUS compatible patches for MIDI players")
1817 (description
1818 "FreePats is a project to create a free and open set of GUS compatible
1819patches that can be used with softsynths such as Timidity and WildMidi.")
1820 ;; GPLv2+ with exception for compositions using these patches.
1821 (license license:gpl2+)))
1822
fcbeb00b
RW
1823(define-public guitarix
1824 (package
1825 (name "guitarix")
bf592ef5 1826 (version "0.41.0")
fcbeb00b
RW
1827 (source (origin
1828 (method url-fetch)
1829 (uri (string-append
de67e922 1830 "mirror://sourceforge/guitarix/guitarix/guitarix2-"
d706d943 1831 version ".tar.xz"))
fcbeb00b
RW
1832 (sha256
1833 (base32
bf592ef5 1834 "0qsfbyrrpb3bbdyq68k28mjql7kglxh8nqcw9jvja28x6x9ik5a0"))))
fcbeb00b
RW
1835 (build-system waf-build-system)
1836 (arguments
1837 `(#:tests? #f ; no "check" target
fcbeb00b
RW
1838 #:configure-flags
1839 (list
fcbeb00b 1840 ;; Add the output lib directory to the RUNPATH.
bf592ef5 1841 (string-append "--ldflags=-Wl,-rpath=" %output "/lib"))))
fcbeb00b
RW
1842 (inputs
1843 `(("libsndfile" ,libsndfile)
1844 ("boost" ,boost)
d54145c3 1845 ("curl" ,curl)
fcbeb00b
RW
1846 ("avahi" ,avahi)
1847 ("eigen" ,eigen)
1848 ("lv2" ,lv2)
1849 ("lilv" ,lilv)
1850 ("ladspa" ,ladspa)
1851 ("jack" ,jack-1)
bf592ef5
RW
1852 ("gtkmm" ,gtkmm)
1853 ("gtk+" ,gtk+)
fcbeb00b
RW
1854 ("fftwf" ,fftwf)
1855 ("lrdf" ,lrdf)
1856 ("zita-resampler" ,zita-resampler)
1857 ("zita-convolver" ,zita-convolver)))
1858 (native-inputs
1859 `(("gperf" ,gperf)
49767428 1860 ("faust" ,faust)
fcbeb00b 1861 ("intltool" ,intltool)
b94a6ca0 1862 ("gettext" ,gettext-minimal)
bf592ef5
RW
1863 ("pkg-config" ,pkg-config)
1864 ("sassc" ,sassc)))
fcbeb00b
RW
1865 (native-search-paths
1866 (list (search-path-specification
1867 (variable "LV2_PATH")
1868 (files '("lib/lv2")))))
096ed4f9 1869 (home-page "https://guitarix.org/")
fcbeb00b
RW
1870 (synopsis "Virtual guitar amplifier")
1871 (description "Guitarix is a virtual guitar amplifier running JACK.
1872Guitarix takes the signal from your guitar as a mono-signal from your sound
1873card. The input is processed by a main amp and a rack-section. Both can be
1874routed separately and deliver a processed stereo-signal via JACK. You may
1875fill the rack with effects from more than 25 built-in modules including stuff
1876from a simple noise gate to modulation effects like flanger, phaser or
1877auto-wah.")
1878 (license license:gpl2+)))
1879
5f5b5768
RW
1880(define-public guitarix-lv2
1881 (package (inherit guitarix)
1882 (name "guitarix-lv2")
1883 (arguments
1884 (substitute-keyword-arguments (package-arguments guitarix)
1885 ((#:configure-flags flags)
029de52f 1886 `(cons "--no-standalone" ,flags))))))
5f5b5768 1887
11d4800a
RW
1888(define-public rakarrack
1889 (package
1890 (name "rakarrack")
1891 (version "0.6.1")
1892 (source (origin
1893 (method url-fetch)
1894 (uri (string-append "mirror://sourceforge/rakarrack/rakarrack/"
1895 "rakarrack-" version "/rakarrack-"
1896 version ".tar.bz2"))
1897 (sha256
1898 (base32
1899 "1rpf63pdn54c4yg13k7cb1w1c7zsvl97c4qxcpz41c8l91xd55kn"))
1900 (modules '((guix build utils)))
1901 (snippet
1902 '(begin
1903 (substitute* '("src/process.C"
1904 "src/global.h")
1905 (("#include <Fl/") "#include <FL/"))
1906 #t))))
1907 (build-system gnu-build-system)
1908 (inputs
1909 `(("alsa-utils" ,alsa-utils)
1910 ("fltk" ,fltk)
1911 ("libx11" ,libx11)
1912 ("libxext" ,libxext)
1913 ("libxfixes" ,libxfixes)
1914 ("libxft" ,libxft)
1915 ("libxrender" ,libxrender)
1916 ("libxpm" ,libxpm)
1917 ("fontconfig" ,fontconfig)
1918 ("freetype" ,freetype)
1919 ("jack" ,jack-1)
1920 ("alsa-lib" ,alsa-lib)
1921 ("libsndfile" ,libsndfile)
1922 ("libsamplerate" ,libsamplerate)
1923 ("zlib" ,zlib)))
1924 (home-page "http://rakarrack.sourceforge.net/")
1925 (synopsis "Audio effects processor")
1926 (description
1927 "Rakarrack is a richly featured multi-effects processor emulating a
1928guitar effects pedalboard. Effects include compressor, expander, noise gate,
1929equalizers, exciter, flangers, chorus, various delay and reverb effects,
1930distortion modules and many more. Most of the effects engine is built from
1931modules found in the excellent software synthesizer ZynAddSubFX. Presets and
1932user interface are optimized for guitar, but Rakarrack processes signals in
1933stereo while it does not apply internal band-limiting filtering, and thus is
1934well suited to all musical instruments and vocals.")
1935 ;; The code is explicitly licensed under the GPL version 2 only.
1936 (license license:gpl2)))
1937
32cf42c1
RW
1938(define-public ir
1939 (package
1940 (name "ir")
6f85a9c4 1941 (version "1.3.4")
32cf42c1 1942 (source (origin
6f85a9c4
RW
1943 (method git-fetch)
1944 (uri (git-reference
1945 (url "https://github.com/tomszilagyi/ir.lv2")
1946 (commit version)))
1947 (file-name (git-file-name name version))
32cf42c1
RW
1948 (sha256
1949 (base32
6f85a9c4 1950 "0svmjhg4r6wy5ci5rwz43ybll7yxjv7nnj7nyqscbzhr3gi5aib0"))))
32cf42c1
RW
1951 (build-system gnu-build-system)
1952 (arguments
2df984f2 1953 `(#:tests? #f ; no tests
6f85a9c4
RW
1954 #:make-flags
1955 (list (string-append "PREFIX=" (assoc-ref %outputs "out"))
1956 (string-append "INSTDIR="
1957 (assoc-ref %outputs "out") "/lib/lv2"))
2df984f2
TGR
1958 #:phases (modify-phases %standard-phases
1959 (delete 'configure)))) ; no configure script
32cf42c1
RW
1960 (inputs
1961 `(("libsndfile" ,libsndfile)
1962 ("libsamplerate" ,libsamplerate)
1963 ("lv2" ,lv2)
1964 ("glib" ,glib)
1965 ("gtk+" ,gtk+-2)
1966 ("zita-convolver" ,zita-convolver)))
1967 (native-inputs
1968 `(("pkg-config" ,pkg-config)))
1969 (native-search-paths
1970 (list (search-path-specification
1971 (variable "LV2_PATH")
1972 (files '("lib/lv2")))))
6f85a9c4 1973 (home-page "https://tomszilagyi.github.io/plugins/ir.lv2")
32cf42c1
RW
1974 (synopsis "LV2 convolution reverb")
1975 (description
1976 "IR is a low-latency, real-time, high performance signal convolver
1977especially for creating reverb effects. It supports impulse responses with 1,
19782 or 4 channels, in any soundfile format supported by libsndfile.")
1979 (license license:gpl2+)))
1980
fb68469f
RW
1981(define-public jack-1
1982 (package
1983 (name "jack")
31b7af76 1984 (version "0.125.0")
2ae03bf6
TGR
1985 (source
1986 (origin
1987 (method url-fetch)
1988 ;; jackaudio.org/downloads/jack-audio-connection-kit-0.125.0.tar.gz
1989 ;; no longer exists (404). Use an unofficial mirror.
1990 (uri (string-append "https://crux.ster.zone/downloads/"
1991 "jack-audio-connection-kit/"
1992 "jack-audio-connection-kit-" version ".tar.gz"))
1993 (sha256
1994 (base32 "0i6l25dmfk2ji2lrakqq9icnwjxklgcjzzk65dmsff91z2zva5rm"))))
fb68469f 1995 (build-system gnu-build-system)
8e2c0ce4
MB
1996 (arguments
1997 `(#:phases (modify-phases %standard-phases
1998 (add-after 'unpack 'patch-configure
1999 (lambda _
2000 (substitute* "configure"
2001 ;; Install to <out/lib> regardless of platform.
2002 (("libnn=lib64") "libnn=lib"))
2003 #t)))))
fb68469f 2004 (inputs
2f9ae82f 2005 `(("alsa-lib" ,alsa-lib)
5d95e30b
RW
2006 ("readline" ,readline)))
2007 ;; uuid.h is included in the JACK type headers
ca01b3ad 2008 ;; db.h is included in the libjack metadata headers
5d95e30b 2009 (propagated-inputs
bb93042c 2010 `(("libuuid" ,util-linux "lib")
ca01b3ad 2011 ("bdb" ,bdb)))
2f9ae82f
RW
2012 (native-inputs
2013 `(("pkg-config" ,pkg-config)))
2ae03bf6 2014 (home-page "https://jackaudio.org/")
fb68469f
RW
2015 (synopsis "JACK audio connection kit")
2016 (description
2017 "JACK is a low-latency audio server. It can connect a number of
2018different applications to an audio device, as well as allowing them to share
2019audio between themselves. JACK is different from other audio server efforts
2020in that it has been designed from the ground up to be suitable for
2021professional audio work. This means that it focuses on two key areas:
2022synchronous execution of all clients, and low latency operation.")
2023 ;; Most files are licensed under the GPL. However, the libjack/ tree is
2024 ;; licensed under the LGPL in order to allow for proprietary usage.
e89fa047 2025 (license (list license:gpl2+ license:lgpl2.1+))))
c54a8981 2026
bcbc02fd
RW
2027;; Packages depending on JACK should always prefer jack-1. Both jack-1 and
2028;; jack-2 implement the same API. JACK2 is provided primarily as a client
2029;; program for users who might benefit from the D-BUS features.
c54a8981
RW
2030(define-public jack-2
2031 (package (inherit jack-1)
314275c7 2032 (name "jack2")
fa984fa6 2033 (version "1.9.13")
c54a8981
RW
2034 (source (origin
2035 (method url-fetch)
a4527622
RW
2036 (uri (string-append "https://github.com/jackaudio/jack2/releases/"
2037 "download/v" version "/jack2-"
2038 version ".tar.gz"))
f586c877 2039 (file-name (string-append name "-" version ".tar.gz"))
c54a8981
RW
2040 (sha256
2041 (base32
fa984fa6 2042 "1d1d403jn4366mqig6g8ghr8057b3rn7gs26b5p3rkal34j20qw2"))))
c54a8981
RW
2043 (build-system waf-build-system)
2044 (arguments
fa984fa6 2045 `(#:tests? #f ; no check target
c54a8981 2046 #:configure-flags '("--dbus"
b416c647
SB
2047 "--alsa")
2048 #:phases
2049 (modify-phases %standard-phases
fa984fa6
RW
2050 (add-before 'configure 'set-linkflags
2051 (lambda _
2052 ;; Add $libdir to the RUNPATH of all the binaries.
2053 (substitute* "wscript"
2054 ((".*CFLAGS.*-Wall.*" m)
2055 (string-append m
2056 " conf.env.append_unique('LINKFLAGS',"
2057 "'-Wl,-rpath=" %output "/lib')\n")))
2058 #t))
bc8bf605 2059 (add-after 'install 'wrap-python-scripts
fa984fa6
RW
2060 (lambda* (#:key inputs outputs #:allow-other-keys)
2061 ;; Make sure 'jack_control' runs with the correct PYTHONPATH.
2062 (let* ((out (assoc-ref outputs "out"))
2063 (path (getenv "PYTHONPATH")))
2064 (wrap-program (string-append out "/bin/jack_control")
2065 `("PYTHONPATH" ":" prefix (,path))))
2066 #t)))))
c54a8981
RW
2067 (inputs
2068 `(("alsa-lib" ,alsa-lib)
2069 ("dbus" ,dbus)
2070 ("expat" ,expat)
2071 ("libsamplerate" ,libsamplerate)
2072 ("opus" ,opus)
fa984fa6 2073 ("python-dbus" ,python-dbus)
c54a8981
RW
2074 ("readline" ,readline)))
2075 (native-inputs
2076 `(("pkg-config" ,pkg-config)))
2077 ;; Most files are under GPLv2+, but some headers are under LGPLv2.1+
2078 (license (list license:gpl2+ license:lgpl2.1+))))
f47cba0e 2079
2f4646b6
RW
2080(define-public jalv
2081 (package
2082 (name "jalv")
4e385d2a 2083 (version "1.6.4")
2f4646b6
RW
2084 (source (origin
2085 (method url-fetch)
0d0252e4 2086 (uri (string-append "https://download.drobilla.net/jalv-"
2f4646b6
RW
2087 version ".tar.bz2"))
2088 (sha256
2089 (base32
4e385d2a 2090 "1wwfn7yzbs37s2rdlfjgks63svd5g14yyzd2gdl7h0z12qncwsy2"))))
2f4646b6 2091 (build-system waf-build-system)
d8c317df 2092 (arguments
4e385d2a 2093 `(#:tests? #f ; no check target
0403b04d 2094 #:python ,python-2))
2f4646b6
RW
2095 (inputs
2096 `(("lv2" ,lv2)
2097 ("lilv" ,lilv)
2098 ("suil" ,suil)
9e4e66c4
AT
2099 ("gtk2" ,gtk+-2)
2100 ("gtk3" ,gtk+)
2101 ("gtkmm" ,gtkmm-2)
2102 ("qtbase" ,qtbase)
2f4646b6
RW
2103 ("jack" ,jack-1)))
2104 (native-inputs
2105 `(("pkg-config" ,pkg-config)))
0d0252e4 2106 (home-page "https://drobilla.net/software/jalv/")
2f4646b6
RW
2107 (synopsis "Simple LV2 host for JACK")
2108 (description
2109 "Jalv is a simple but fully featured LV2 host for JACK. It runs LV2
2110plugins and exposes their ports as JACK ports, essentially making any LV2
2111plugin function as a JACK application.")
2112 (license license:isc)))
2113
2cc7ce31
RW
2114(define-public ladspa
2115 (package
2116 (name "ladspa")
2117 (version "1.13")
0c1910ed
AV
2118 (source
2119 (origin
2120 (method url-fetch)
2121 ;; Since the official link is dead,
2122 ;; we download the tarball from Debian or Internet Archive.
2123 (uri (list (string-append "http://http.debian.net"
2124 "/debian/pool/main/l/ladspa-sdk/ladspa-sdk_"
2125 version ".orig.tar.gz")
2126 (string-append "https://web.archive.org/web/20140717172251/"
2127 "http://www.ladspa.org/download/ladspa_sdk_"
2128 version ".tgz")))
2129 (sha256
2130 (base32
2131 "0srh5n2l63354bc0srcrv58rzjkn4gv8qjqzg8dnq3rs4m7kzvdm"))))
2cc7ce31
RW
2132 (build-system gnu-build-system)
2133 (arguments
2134 `(#:tests? #f ; the "test" target is a listening test only
2135 #:phases
ee527187
MW
2136 (modify-phases %standard-phases
2137 (replace 'configure
2138 (lambda* (#:key inputs outputs #:allow-other-keys #:rest args)
2139 (chdir "src")
2140 (let ((out (assoc-ref outputs "out")))
2141 (substitute* "makefile"
2142 (("/usr/lib/ladspa/") (string-append out "/lib/ladspa/"))
2143 (("/usr/include/") (string-append out "/include/"))
2144 (("/usr/bin/") (string-append out "/bin/"))
2145 (("-mkdirhier") "mkdir -p")
2146 (("^CC.*") "CC = gcc\n")
2147 (("^CPP.*") "CPP = g++\n")))
2148 #t))
2149 (delete 'build))))
0c1910ed
AV
2150 ;; Since the home page is gone, we provide a link to the archived version.
2151 (home-page
2152 "https://web.archive.org/web/20140729190945/http://www.ladspa.org/")
2cc7ce31
RW
2153 (synopsis "Linux Audio Developer's Simple Plugin API (LADSPA)")
2154 (description
2155 "LADSPA is a standard that allows software audio processors and effects
2156to be plugged into a wide range of audio synthesis and recording packages.")
2157 (license license:lgpl2.1+)))
2158
da49086a
RW
2159(define-public lash
2160 (package
2161 (name "lash")
2162 (version "0.6.0-rc2")
2163 (source (origin
2164 (method url-fetch)
2165 ;; The tilde is not permitted in the builder name, but is used
2166 ;; in the tarball.
2167 (uri (string-append
2168 "mirror://savannah/lash/lash-"
2169 (string-join (string-split version #\-) "~")
2170 ".tar.bz2"))
2171 (file-name (string-append name "-" version ".tar.bz2"))
2172 (sha256
2173 (base32
2174 "12z1vx3krrzsfccpah9xjs68900xvr7bw92wx8np5871i2yv47iw"))))
2175 (build-system gnu-build-system)
44df7807 2176 (arguments
f03cda4d
MB
2177 '(;; Glibc no longer includes Sun RPC support, so tell the build system
2178 ;; to use libtirpc instead.
2179 #:make-flags (list (string-append "CFLAGS=-I"
2180 (assoc-ref %build-inputs "libtirpc")
2181 "/include/tirpc -ltirpc"))
2182 #:phases
44df7807
EF
2183 (modify-phases %standard-phases
2184 ;; lashd embeds an ancient version of sigsegv so we just skip it
2185 (add-after 'unpack 'skip-lashd
2186 (lambda _
2187 (substitute* '("Makefile.am" "Makefile.in")
2188 (("lashd ") ""))
b07bfd06
EF
2189 #t)))
2190 #:configure-flags '("--disable-static")))
da49086a
RW
2191 (inputs
2192 `(("bdb" ,bdb)
2193 ("gtk" ,gtk+-2)
2194 ("jack" ,jack-1)
f03cda4d 2195 ("libtirpc" ,libtirpc)
da49086a
RW
2196 ("readline" ,readline)
2197 ("python" ,python-2)))
2198 ;; According to pkg-config, packages depending on lash also need to have
2199 ;; at least the following packages declared as inputs.
2200 (propagated-inputs
2201 `(("alsa-lib" ,alsa-lib)
2202 ("dbus" ,dbus)
2203 ("libxml2" ,libxml2)))
2204 (native-inputs
2205 `(("pkg-config" ,pkg-config)))
340978d7 2206 (home-page "https://www.nongnu.org/lash/")
da49086a
RW
2207 (synopsis "Audio application session manager")
2208 (description
2209 "LASH is a session management system for audio applications. It allows
2210you to save and restore audio sessions consisting of multiple interconneced
2211applications, restoring program state (i.e. loaded patches) and the
2212connections between them.")
2213 (license license:gpl2+)))
2214
8c0b5a75
TUBK
2215(define-public libbs2b
2216 (package
2217 (name "libbs2b")
2218 (version "3.1.0")
2219 (source (origin
2220 (method url-fetch)
de67e922
LF
2221 (uri (string-append "mirror://sourceforge/bs2b/libbs2b/" version
2222 "/libbs2b-" version ".tar.lzma"))
8c0b5a75
TUBK
2223 (sha256
2224 (base32
2225 "1mcc4gjkmphczjybnsrip3gq1f974knzys7x49bv197xk3fn8wdr"))))
2226 (build-system gnu-build-system)
2227 (native-inputs `(("pkg-config" ,pkg-config)))
2228 (inputs `(("libsndfile" ,libsndfile)))
3b3b60d0 2229 (home-page "https://sourceforge.net/projects/bs2b/")
8c0b5a75
TUBK
2230 (synopsis "Bauer stereophonic-to-binaural DSP")
2231 (description
2232 "The Bauer stereophonic-to-binaural DSP (bs2b) library and plugins is
2233designed to improve headphone listening of stereo audio records. Recommended
2234for headphone prolonged listening to disable superstereo fatigue without
2235essential distortions.")
2236 (license license:expat)))
2237
ecd56cd1
JF
2238(define-public ladspa-bs2b
2239 (package
2240 (name "ladspa-bs2b")
2241 (version "0.9.1")
2242 (source (origin
2243 (method url-fetch)
2244 (uri (string-append
2245 "mirror://sourceforge/bs2b/plugins/LADSPA%20plugin/"
2246 version "/" name "-" version ".tar.gz"))
2247 (sha256
2248 (base32
2249 "1b4aipbj1ba5k99gbc7gmgy14sywyrjd8rpyqj5l905j0mjv8jg2"))))
2250 (build-system gnu-build-system)
2251 (native-inputs `(("pkg-config" ,pkg-config)))
2252 (inputs `(("ladspa" ,ladspa)
2253 ("libbs2b" ,libbs2b)))
2254 (home-page "https://sourceforge.net/projects/bs2b/")
2255 (synopsis "Bauer stereophonic-to-binaural DSP - LADSPA plugin")
2256 (description "The Bauer stereophonic-to-binaural DSP (bs2b) library and
2257plugins is designed to improve headphone listening of stereo audio records.
2258Recommended for headphone prolonged listening to disable superstereo fatigue
2259without essential distortions. This package contains a LADSPA plugin for use
2260with applications that support them (e.g. PulseAudio).")
2261 (license license:gpl2+)))
2262
f47cba0e
RW
2263(define-public liblo
2264 (package
2265 (name "liblo")
363fe78a 2266 (version "0.31")
f47cba0e
RW
2267 (source (origin
2268 (method url-fetch)
de67e922
LF
2269 (uri (string-append "mirror://sourceforge/liblo/liblo/" version
2270 "/liblo-" version ".tar.gz"))
f47cba0e
RW
2271 (sha256
2272 (base32
363fe78a 2273 "0l67rkdhfa8cffa0nynql3lh2xlbn1454h6qxhjddp1029p48krb"))))
f47cba0e
RW
2274 (build-system gnu-build-system)
2275 (arguments
2276 `(;; liblo test FAILED
2277 ;; liblo server error 19 in setsockopt(IP_ADD_MEMBERSHIP): No such device
2278 #:tests? #f))
2279 (home-page "http://liblo.sourceforge.net")
2280 (synopsis "Implementation of the Open Sound Control protocol")
2281 (description
2282 "liblo is a lightweight library that provides an easy to use
03b71957 2283implementation of the Open Sound Control (@dfn{OSC}) protocol.")
f47cba0e 2284 (license license:lgpl2.1+)))
e2420191 2285
b6568c35
VM
2286(define-public rtaudio
2287 (package
2288 (name "rtaudio")
2289 (version "5.1.0")
2290 (source
2291 (origin
2292 (method git-fetch)
2293 (uri (git-reference
2294 (url "https://github.com/thestk/rtaudio")
2295 (commit version)))
2296 (file-name (git-file-name name version))
2297 (sha256
2298 (base32 "156c2dgh6jrsyfn1y89nslvaxm4yifmxridsb708yvkaym02w2l8"))))
2299 (build-system cmake-build-system)
2300 (native-inputs
2301 `(("pkg-config" ,pkg-config)))
2302 (inputs
2303 `(("alsa-lib" ,alsa-lib)
2304 ("jack" ,jack-1)
2305 ("pulseaudio" ,pulseaudio)))
2306 (synopsis "Common API for real-time audio I/O")
2307 (description
2308 "RtAudio is a set of C++ classes that provides a common API for real-time
2309audio input/output. It was designed with the following objectives:
2310
2311@itemize
2312@item object-oriented C++ design
2313@item simple, common API across all supported platforms
2314@item only one source and one header file for easy inclusion in programming
2315projects
2316@item allow simultaneous multi-api support
2317@item support dynamic connection of devices
2318@item provide extensive audio device parameter control
2319@item allow audio device capability probing
2320@item automatic internal conversion for data format, channel number
2321compensation, (de)interleaving, and byte-swapping
2322@end itemize")
2323 (home-page "https://www.music.mcgill.ca/~gary/rtaudio/")
2324 ;; License is expat with a non-binding request to send modifications to
2325 ;; original developer.
2326 (license license:expat)))
2327
fbcad884
OP
2328(define-public python-pyaudio
2329 (package
2330 (name "python-pyaudio")
2331 (version "0.2.11")
2332 (source
2333 (origin
2334 (method url-fetch)
7d4dae6a 2335 (uri (pypi-uri "PyAudio" version))
fbcad884
OP
2336 (sha256
2337 (base32
2338 "0x7vdsigm7xgvyg3shd3lj113m8zqj2pxmrgdyj66kmnw0qdxgwk"))))
2339 (build-system python-build-system)
2340 (inputs
2341 `(("portaudio" ,portaudio)))
2342 (home-page "https://people.csail.mit.edu/hubert/pyaudio/")
2343 (synopsis "Bindings for PortAudio v19")
2344 (description "This package provides bindings for PortAudio v19, the
2345cross-platform audio input/output stream library.")
2346 (license license:expat)))
2347
2348(define-public python2-pyaudio
2349 (package-with-python2 python-pyaudio))
2350
a91d72e2
RW
2351(define-public python-pyliblo
2352 (package
2353 (name "python-pyliblo")
2354 (version "0.10.0")
2355 (source (origin
2356 (method url-fetch)
2357 (uri (string-append "http://das.nasophon.de/download/pyliblo-"
2358 version ".tar.gz"))
2359 (sha256
2360 (base32
2361 "13vry6xhxm7adnbyj28w1kpwrh0kf7nw83cz1yq74wl21faz2rzw"))))
2362 (build-system python-build-system)
2363 (arguments `(#:tests? #f)) ;no tests
f2516de2
HG
2364 (native-inputs
2365 `(("python-cython" ,python-cython)))
a91d72e2 2366 (inputs
f2516de2 2367 `(("liblo" ,liblo)))
a91d72e2
RW
2368 (home-page "http://das.nasophon.de/pyliblo/")
2369 (synopsis "Python bindings for liblo")
2370 (description
2371 "Pyliblo is a Python wrapper for the liblo Open Sound Control (OSC)
2372library. It supports almost the complete functionality of liblo, allowing you
2373to send and receive OSC messages using a nice and simple Python API. Also
2374included are the command line utilities @code{send_osc} and @code{dump_osc}.")
2375 (license license:lgpl2.1+)))
2376
2377(define-public python2-pyliblo
2378 (package-with-python2 python-pyliblo))
2379
332aad1b
RW
2380(define-public lilv
2381 (package
2382 (name "lilv")
4d1cb5f9 2383 (version "0.24.8")
332aad1b
RW
2384 (source (origin
2385 (method url-fetch)
0d0252e4 2386 (uri (string-append "https://download.drobilla.net/lilv-"
d4d3df82 2387 version ".tar.bz2"))
332aad1b
RW
2388 (sha256
2389 (base32
4d1cb5f9 2390 "0063i5zgf3d3accwmyx651hw0wh5ik7kji2hvfkcdbl1qia3dp6a"))))
332aad1b 2391 (build-system waf-build-system)
d80ee442 2392 (arguments
d0b025ea 2393 `(#:tests? #f ; no check target
d80ee442
TUBK
2394 #:phases
2395 (modify-phases %standard-phases
2d91e596 2396 (add-before 'configure 'set-ldflags
d80ee442
TUBK
2397 (lambda* (#:key outputs #:allow-other-keys)
2398 (setenv "LDFLAGS"
2399 (string-append "-Wl,-rpath="
d582d925 2400 (assoc-ref outputs "out") "/lib"))
6833c7a1
F
2401 #t))
2402 (add-after 'unpack 'full-store-path-to-shared-library
2403 (lambda* (#:key outputs #:allow-other-keys)
2404 (with-directory-excursion "bindings/python"
2405 (substitute* "lilv.py"
2406 (("liblilv-0.so") (string-append (assoc-ref outputs "out")
2407 "/lib/liblilv-0.so"))))
2408 #t)))))
d0b025ea 2409 ;; Required by lilv-0.pc.
ff7df27d 2410 (propagated-inputs
471884ed
MB
2411 `(("lv2" ,lv2)
2412 ("serd" ,serd)
332aad1b
RW
2413 ("sord" ,sord)
2414 ("sratom" ,sratom)))
2415 (native-inputs
6833c7a1
F
2416 `(("python" ,python)
2417 ("pkg-config" ,pkg-config)))
2418 (home-page "https://drobilla.net/software/lilv")
332aad1b
RW
2419 (synopsis "Library to simplify use of LV2 plugins in applications")
2420 (description
2421 "Lilv is a C library to make the use of LV2 plugins as simple as possible
2422for applications. Lilv is the successor to SLV2, rewritten to be
2423significantly faster and have minimal dependencies.")
2424 (license license:isc)))
2425
e2420191
RW
2426(define-public lv2
2427 (package
2428 (name "lv2")
ae0f26b8 2429 (version "1.18.0")
e2420191
RW
2430 (source (origin
2431 (method url-fetch)
2c735995 2432 (uri (string-append "https://lv2plug.in/spec/lv2-"
eb21d248 2433 version ".tar.bz2"))
e2420191
RW
2434 (sha256
2435 (base32
ae0f26b8 2436 "0gs7401xz23q9vajqr31aa2db8dvssgyh5zrvr4ipa6wig7yb8wh"))))
e2420191
RW
2437 (build-system waf-build-system)
2438 (arguments
2c735995 2439 `(#:tests? #f ; no check target
2e189eb8 2440 #:configure-flags '("--no-plugins")))
e2420191
RW
2441 (inputs
2442 ;; Leaving off cairo and gtk+-2.0 which are needed for example plugins
2443 `(("libsndfile" ,libsndfile)))
2444 (native-inputs
2445 `(("pkg-config" ,pkg-config)))
2c735995 2446 (home-page "https://lv2plug.in/")
e2420191
RW
2447 (synopsis "LV2 audio plugin specification")
2448 (description
2449 "LV2 is an open specification for audio plugins and host applications.
2450At its core, LV2 is a simple stable interface, accompanied by extensions which
2451add functionality to support the needs of increasingly powerful audio
2452software.")
2453 (license license:isc)))
5279eb6f 2454
98247127
RW
2455(define-public lv2-mda-piano
2456 (package
2457 (name "lv2-mda-piano")
2458 (version "0.0.2")
2459 (source (origin
2460 (method git-fetch)
2461 (uri (git-reference
f6f499b3 2462 (url "http://git.elephly.net/software/lv2-mdametapiano.git")
98247127 2463 (commit version)))
35a01e67 2464 (file-name (git-file-name name version))
98247127
RW
2465 (sha256
2466 (base32
2467 "07lywf6lpfpndg3i9w752mmlg2hgn1bwp23h8b0mdj6awh67abqd"))))
2468 (build-system gnu-build-system)
2469 (arguments
2470 `(#:make-flags (list
2471 "TYPE=mdaPiano"
2472 (string-append "PREFIX=" (assoc-ref %outputs "out")))
2473 #:tests? #f ; no check target
dc1d3cde 2474 #:phases (modify-phases %standard-phases (delete 'configure))))
98247127
RW
2475 (inputs
2476 `(("lv2" ,lv2)
2477 ("lvtk" ,lvtk)))
2478 (native-inputs
2479 `(("pkg-config" ,pkg-config)))
2480 (native-search-paths
2481 (list (search-path-specification
2482 (variable "LV2_PATH")
2483 (files '("lib/lv2")))))
a4e8a9e0 2484 (home-page "https://elephly.net/lv2/mdapiano.html")
98247127
RW
2485 (synopsis "LV2 port of the mda Piano plugin")
2486 (description "An LV2 port of the mda Piano VSTi.")
2487 (license license:gpl3+)))
2488
8fb79e3d
RW
2489(define-public lv2-mda-epiano
2490 (package (inherit lv2-mda-piano)
2491 (name "lv2-mda-epiano")
2492 (arguments
2493 `(#:make-flags (list
2494 "TYPE=mdaEPiano"
2495 (string-append "PREFIX=" (assoc-ref %outputs "out")))
2496 #:tests? #f ; no check target
dc1d3cde 2497 #:phases (modify-phases %standard-phases (delete 'configure))))
a4e8a9e0 2498 (home-page "https://elephly.net/lv2/mdaepiano.html")
8fb79e3d
RW
2499 (synopsis "LV2 port of the mda EPiano plugin")
2500 (description "An LV2 port of the mda EPiano VSTi.")))
2501
c1718190
RW
2502(define-public lvtk
2503 (package
2504 (name "lvtk")
2505 (version "1.2.0")
2506 (source (origin
b255365c
RW
2507 (method git-fetch)
2508 (uri (git-reference
b0e7b699 2509 (url "https://github.com/lvtk/lvtk")
b255365c
RW
2510 (commit version)))
2511 (file-name (git-file-name name version))
c1718190
RW
2512 (sha256
2513 (base32
b255365c 2514 "1b01zvzl70ana6l1kn8fgyr7msnn3c7x61cgw7fdpp50322352p8"))))
c1718190
RW
2515 (build-system waf-build-system)
2516 (arguments
2517 `(#:tests? #f ; no check target
2518 #:python ,python-2
2519 #:configure-flags
2520 (list (string-append "--boost-includes="
2521 (assoc-ref %build-inputs "boost")
ed59057b 2522 "/include"))))
c1718190
RW
2523 (inputs
2524 `(("boost" ,boost)
85f4863f 2525 ("gtkmm" ,gtkmm-2)
c1718190
RW
2526 ("lv2" ,lv2)))
2527 (native-inputs
2528 `(("pkg-config" ,pkg-config)))
2529 (home-page "https://github.com/lvtk/lvtk")
2530 (synopsis "C++ libraries for LV2 plugins")
2531 (description
2532 "The LV2 Toolkit (LVTK) contains libraries that wrap the LV2 C API and
2533extensions into easy to use C++ classes. It is the successor of
2534lv2-c++-tools.")
2535 (license license:gpl3+)))
2536
f2fac359
TUBK
2537(define-public openal
2538 (package
2539 (name "openal")
d5037890 2540 (version "1.20.1")
f2fac359
TUBK
2541 (source (origin
2542 (method url-fetch)
2543 (uri (string-append
b7ea10d0 2544 "https://openal-soft.org/openal-releases/openal-soft-"
f2fac359
TUBK
2545 version ".tar.bz2"))
2546 (sha256
2547 (base32
d5037890 2548 "0vax0b1lgd4212bpxa1rciz52d4mv3dkfvcbbhzw4cjp698v1kmn"))))
f2fac359
TUBK
2549 (build-system cmake-build-system)
2550 (arguments
7ee5db15
RW
2551 `(#:tests? #f ; no check target
2552 #:phases
2553 (modify-phases %standard-phases
2554 (add-after
2555 'unpack 'use-full-library-paths
2556 (lambda* (#:key inputs #:allow-other-keys)
69290fd0 2557 (substitute* "alc/backends/pulseaudio.cpp"
7ee5db15
RW
2558 (("#define PALIB \"libpulse\\.so\\.0\"")
2559 (string-append "#define PALIB \""
2560 (assoc-ref inputs "pulseaudio")
2561 "/lib/libpulse.so.0"
2562 "\"")))
69290fd0 2563 (substitute* "alc/backends/alsa.cpp"
7ee5db15
RW
2564 (("LoadLib\\(\"libasound\\.so\\.2\"\\)")
2565 (string-append "LoadLib(\""
2566 (assoc-ref inputs "alsa-lib")
2567 "/lib/libasound.so.2"
2568 "\")")))
2569 #t)))))
f2fac359
TUBK
2570 (inputs
2571 `(("alsa-lib" ,alsa-lib)
2572 ("pulseaudio" ,pulseaudio)))
2573 (synopsis "3D audio API")
2574 (description
2575 "OpenAL provides capabilities for playing audio in a virtual 3D
2576environment. Distance attenuation, doppler shift, and directional sound
2577emitters are among the features handled by the API. More advanced effects,
2578including air absorption, occlusion, and environmental reverb, are available
2579through the EFX extension. It also facilitates streaming audio, multi-channel
2580buffers, and audio capture.")
b7ea10d0 2581 (home-page "https://openal-soft.org/")
f2fac359
TUBK
2582 (license license:lgpl2.0+)))
2583
c2b411c2 2584(define-public freealut
2585 (package
2586 (name "freealut")
2587 (version "1.1.0")
2588 (source (origin
2589 (method url-fetch)
2590 ;; Upstream url is unclear, many systems use Fedora, there is also
2591 ;; https://github.com/vancegroup/freealut though the status of it
2592 ;; (official? unofficial?) is not clear.
2593 (uri (string-append
2594 "https://pkgs.fedoraproject.org/repo/pkgs/" name "/" name "-"
2595 version ".tar.gz" "/e089b28a0267faabdb6c079ee173664a/" name
2596 "-" version ".tar.gz"))
2597 (sha256
2598 (base32
2599 "0kzlil6112x2429nw6mycmif8y6bxr2cwjcvp18vh6s7g63ymlb0"))))
2600 (build-system cmake-build-system)
2601 (arguments
2602 `(#:tests? #f)) ; no check target
2603 (inputs
2604 `(("openal" ,openal)))
2605 (synopsis "Free implementation of OpenAL's ALUT standard")
2606 (description "freealut is the OpenAL Utility Toolkit.")
aeca6070 2607 (home-page "https://kcat.strangesoft.net/openal.html")
c2b411c2 2608 (license license:lgpl2.0)))
2609
4443bb8d
RW
2610(define-public patchage
2611 (package
2612 (name "patchage")
b91dcefd 2613 (version "1.0.2")
4443bb8d
RW
2614 (source (origin
2615 (method url-fetch)
0d0252e4 2616 (uri (string-append "https://download.drobilla.net/patchage-"
4443bb8d
RW
2617 version
2618 ".tar.bz2"))
2619 (sha256
2620 (base32
b91dcefd 2621 "0dk3fiac10m83mwss3026yz7ygc47c2iw924cwwnh2fyydc9bsy6"))))
4443bb8d 2622 (build-system waf-build-system)
0fd9671b 2623 (arguments
b91dcefd 2624 `(#:tests? #f ; no check target
0fd9671b 2625 #:python ,python-2))
4443bb8d
RW
2626 (inputs
2627 `(("alsa-lib" ,alsa-lib)
2628 ("boost" ,boost)
2629 ("jack" ,jack-1)
4443bb8d 2630 ("ganv" ,ganv)
4443bb8d
RW
2631 ("glibmm" ,glibmm)
2632 ("gtkmm" ,gtkmm-2)
4443bb8d
RW
2633 ("dbus-glib" ,dbus-glib)))
2634 (native-inputs
2635 `(("pkg-config" ,pkg-config)))
0d0252e4 2636 (home-page "https://drobilla.net/software/patchage/")
4443bb8d
RW
2637 (synopsis "Modular patch bay for audio and MIDI systems")
2638 (description
2639 "Patchage is a modular patch bay for audio and MIDI systems based on JACK
2640and ALSA.")
2641 (license license:gpl3+)))
2642
a4b71b32
MB
2643(define-public pcaudiolib
2644 (package
2645 (name "pcaudiolib")
2646 (version "1.1")
2647 (home-page "https://github.com/espeak-ng/pcaudiolib")
2648 (source (origin
2649 (method git-fetch)
2650 (uri (git-reference (url home-page) (commit version)))
2651 (file-name (git-file-name name version))
2652 (sha256
2653 (base32
2654 "0c55hlqqh0m7bcb3nlgv1s4a22s5bgczr1cakjh3767rjb10khi0"))))
2655 (build-system gnu-build-system)
2656 (arguments
2657 `(#:configure-flags '("--disable-static")))
2658 (native-inputs
2659 `(("autoconf" ,autoconf)
2660 ("automake" ,automake)
2661 ("libtool" ,libtool)
2662 ("pkg-config" ,pkg-config)
2663 ("which" ,which)))
2664 (inputs
2665 `(("alsa-lib" ,alsa-lib)
2666 ("pulseaudio" ,pulseaudio)))
2667 (synopsis "Portable C audio library")
2668 (description
2669 "The Portable C Audio Library (pcaudiolib) provides a C@tie{}API to
2670different audio devices such as ALSA or PulseAudio.")
2671 (license (list license:gpl3+
2672 ;; The bundled TPCircularBuffer uses a custom license.
2673 (license:non-copyleft
2674 "file://src/TPCircularBuffer/README.markdown")))))
2675
0d78e377
MM
2676(define-public qjackctl
2677 (package
2678 (name "qjackctl")
e7597aad 2679 (version "0.5.9")
0d78e377
MM
2680 (source (origin
2681 (method url-fetch)
1538bc33
RW
2682 (uri (string-append "mirror://sourceforge/qjackctl/qjackctl/"
2683 version "/qjackctl-" version ".tar.gz"))
0d78e377
MM
2684 (sha256
2685 (base32
e7597aad 2686 "1saywsda9m124rmjp7i3n0llryaliabjxhqhvqr6dm983qy7pypk"))))
0d78e377
MM
2687 (build-system gnu-build-system)
2688 (arguments
4dcf221c 2689 '(#:tests? #f)) ; no check target
0d78e377 2690 (inputs
5ffa7cb1 2691 `(("jack" ,jack-1)
c0c5feda 2692 ("alsa-lib" ,alsa-lib)
a3c57693
EF
2693 ("qtbase" ,qtbase)
2694 ("qtx11extras" ,qtx11extras)))
0d78e377
MM
2695 (native-inputs
2696 `(("pkg-config" ,pkg-config)
2697 ("qttools" ,qttools)))
2698 (home-page "https://qjackctl.sourceforge.io/")
2699 (synopsis "Jack server control application")
2700 (description "Control a Jack server. Allows you to plug various sources
2701into various outputs and to start, stop and configure jackd")
2702 (license license:gpl2+)))
2703
40713793
RW
2704(define-public qjackrcd
2705 (package
2706 (name "qjackrcd")
78357403 2707 (version "1.2.2")
40713793 2708 (source (origin
78357403
RW
2709 (method git-fetch)
2710 (uri (git-reference
b0e7b699 2711 (url "https://github.com/orouits/qjackrcd")
78357403 2712 (commit (string-append "v" version))))
70aa07d2 2713 (file-name (git-file-name name version))
40713793
RW
2714 (sha256
2715 (base32
78357403 2716 "1l5iq2mkqd4gn9yr8xbh9qlpp1clcflazychl4vhdbz0bzq4c6al"))))
40713793
RW
2717 (build-system gnu-build-system)
2718 (arguments
2719 `(#:phases
2720 (modify-phases %standard-phases
2721 (replace 'configure
2722 (lambda* (#:key outputs #:allow-other-keys)
14a852bd
TGR
2723 (invoke "qmake"
2724 (string-append "PREFIX="
2725 (assoc-ref outputs "out"))))))))
40713793
RW
2726 (native-inputs
2727 `(("qtbase" ,qtbase))) ; for qmake
2728 (inputs
2729 `(("jack" ,jack-1)
2730 ("libsndfile" ,libsndfile)
2731 ("qtbase" ,qtbase)))
2732 (home-page "https://sourceforge.net/projects/qjackrcd/")
2733 (synopsis "Stereo audio recorder for JACK")
2734 (description "QJackRcd is a simple graphical stereo recorder for JACK
2735supporting silence processing for automatic pause, file splitting, and
2736background file post-processing.")
2737 (license license:gpl2+)))
0d78e377 2738
247384d0
MC
2739(define-public supercollider
2740 (package
2741 (name "supercollider")
409d2907 2742 (version "3.11.0")
247384d0 2743 (source (origin
6241eacd
GL
2744 (method git-fetch)
2745 (uri (git-reference
b0e7b699 2746 (url "https://github.com/supercollider/supercollider")
6241eacd
GL
2747 (commit (string-append "Version-" version))
2748 ;; for nova-simd, nova-tt, hidapi, TLSF, oscpack
2749 (recursive? #t)))
2750 (file-name (git-file-name name version))
247384d0
MC
2751 (sha256
2752 (base32
a5638483
MC
2753 "02v911w2kdbg3kfl593lb2ig4sjbfxzv20a0vbcymhfzpvp1x6xp"))
2754 (modules '((guix build utils)
2755 (ice-9 ftw)))
2756 (snippet
2757 ;; The build system doesn't allow us to unbundle the following
2758 ;; libraries. hidapi is also heavily patched and upstream not
2759 ;; actively maintained.
2760 '(let ((keep-dirs '("nova-simd" "nova-tt" "hidapi"
2761 "TLSF-2.4.6" "oscpack_1_1_0" "." "..")))
2762 (with-directory-excursion "./external_libraries"
2763 (for-each
2764 delete-file-recursively
2765 (scandir "."
2766 (lambda (x)
2767 (and (eq? (stat:type (stat x)) 'directory)
2768 (not (member (basename x) keep-dirs)))))))
2769 ;; To find the Guix provided ableton-link library.
2770 (substitute* "lang/CMakeLists.txt"
2771 (("include\\(\\.\\./external_libraries/link/\
2772AbletonLinkConfig\\.cmake\\)")
2773 "find_package(AbletonLink NAMES AbletonLink ableton-link \
2774link REQUIRED)"))
2775 #t))))
247384d0 2776 (build-system cmake-build-system)
409d2907
GL
2777 (outputs
2778 '("out" ;core language
2779 "ide")) ;qt ide
247384d0
MC
2780 (arguments
2781 `(#:configure-flags '("-DSYSTEM_BOOST=on" "-DSYSTEM_YAMLCPP=on"
409d2907
GL
2782 "-DSC_QT=ON" "-DCMAKE_BUILD_TYPE=Release"
2783 "-DFORTIFY=ON" "-DLIBSCSYNTH=ON"
247384d0 2784 "-DSC_EL=off") ;scel is packaged individually as
21e733ce 2785 ;emacs-scel
247384d0
MC
2786 #:phases
2787 (modify-phases %standard-phases
2915a760
MC
2788 ;; HOME must be defined otherwise supercollider throws a "ERROR:
2789 ;; Primitive '_FileMkDir' failed." error when generating the doc.
2790 ;; The graphical tests also hang without it.
2791 (add-after 'unpack 'set-home-directory
247384d0 2792 (lambda _
2915a760 2793 (setenv "HOME" (getcwd))
6241eacd 2794 #t))
2915a760 2795 (add-after 'unpack 'patch-scclass-dir
6241eacd
GL
2796 (lambda* (#:key outputs #:allow-other-keys)
2797 (let* ((out (assoc-ref outputs "out"))
2798 (scclass-dir
2799 (string-append out
2800 "/share/SuperCollider/SCClassLibrary")))
2801 (substitute* "lang/LangSource/SC_LanguageConfig.cpp"
2802 (((string-append
2803 "SC_Filesystem::instance\\(\\)\\.getDirectory"
2804 "\\(DirName::Resource\\) / CLASS_LIB_DIR_NAME"))
2805 (string-append "Path(\"" scclass-dir "\")")))
409d2907 2806 #t)))
2915a760
MC
2807 (add-before 'build 'prepare-x
2808 (lambda _
2809 (system "Xvfb &")
2810 (setenv "DISPLAY" ":0")
2811 #t))
409d2907
GL
2812 (add-before 'install 'install-ide
2813 (lambda* (#:key outputs #:allow-other-keys)
2814 (let* ((out (assoc-ref outputs "out"))
2815 (ide (assoc-ref outputs "ide"))
2816 (scide "editors/sc-ide/scide"))
2817 (install-file scide
2818 (string-append ide "/bin"))
2819 (delete-file scide)
6241eacd 2820 #t))))))
247384d0 2821 (native-inputs
409d2907
GL
2822 `(("ableton-link" ,ableton-link)
2823 ("pkg-config" ,pkg-config)
2915a760
MC
2824 ("qttools" ,qttools)
2825 ("xorg-server" ,xorg-server-for-tests)))
247384d0
MC
2826 (inputs
2827 `(("jack" ,jack-1)
2828 ("libsndfile" ,libsndfile)
2829 ("fftw" ,fftw)
2830 ("libxt" ,libxt)
2831 ("readline" ,readline) ;readline support for sclang's CLI
2832 ("alsa" ,alsa-lib) ;for sclang's MIDI interface
2833 ("eudev" ,eudev) ;for user interactions with devices
2834 ("avahi" ,avahi) ;zeroconf service discovery support
2835 ("icu4c" ,icu4c)
4cb9b726 2836 ("boost" ,boost)
247384d0 2837 ("boost-sync" ,boost-sync)
409d2907
GL
2838 ("yaml-cpp" ,yaml-cpp)
2839 ("qtbase" ,qtbase)
2840 ("qtdeclarative" ,qtdeclarative)
2841 ("qtsvg" ,qtsvg)
2842 ("qtwebchannel" ,qtwebchannel)
2843 ("qtwebsockets" ,qtwebsockets)))
2844 (propagated-inputs ;to get native-search-path
2845 `(("qtwebengine" ,qtwebengine)))
247384d0
MC
2846 (home-page "https://github.com/supercollider/supercollider")
2847 (synopsis "Synthesis engine and programming language")
2848 (description "SuperCollider is a synthesis engine (@code{scsynth} or
2849@code{supernova}) and programming language (@code{sclang}). It can be used
2850for experimenting with sound synthesis and algorithmic composition.
2851
2852SuperCollider requires jackd to be installed in your user profile and your
2853user must be allowed to access the realtime features of the kernel. Search
2854for \"realtime\" in the index of the Guix manual to learn how to achieve this
59e80445 2855using Guix System.")
247384d0
MC
2856 (license license:gpl2+)))
2857
b22755be
RW
2858(define-public raul
2859 (package
2860 (name "raul")
2861 (version "0.8.0")
2862 (source (origin
2863 (method url-fetch)
0d0252e4 2864 (uri (string-append "https://download.drobilla.net/raul-"
b22755be
RW
2865 version ".tar.bz2"))
2866 (sha256
2867 (base32
2868 "09ms40xc1x6qli6lxkwn5ibqh62nl9w7dq0b6jh1q2zvnrxwsd8b"))))
2869 (build-system waf-build-system)
2870 (arguments
2871 `(#:python ,python-2
2872 #:tests? #f)) ; no check target
2873 (inputs
2874 `(("glib" ,glib)
2875 ("boost" ,boost)))
2876 (native-inputs
2877 `(("pkg-config" ,pkg-config)))
0d0252e4 2878 (home-page "https://drobilla.net/software/raul/")
b22755be
RW
2879 (synopsis "Real-time audio utility library")
2880 (description
2881 "Raul (Real-time Audio Utility Library) is a C++ utility library primarily
2882aimed at audio/musical applications.")
2883 (license license:gpl2+)))
2884
f91d0d08 2885(define-public raul-devel
a8bf6b9b 2886 (let ((commit "4db870b2b20b0a608ec0283139056b836c5b1624")
f91d0d08
RW
2887 (revision "1"))
2888 (package (inherit raul)
2889 (name "raul")
a8bf6b9b 2890 (version (string-append "0.8.9-" revision "."
f91d0d08
RW
2891 (string-take commit 9)))
2892 (source (origin
2893 (method git-fetch)
2894 (uri (git-reference
0d0252e4 2895 (url "https://git.drobilla.net/raul.git")
f91d0d08
RW
2896 (commit commit)))
2897 (file-name (string-append name "-" version "-checkout"))
2898 (sha256
2899 (base32
a8bf6b9b 2900 "04fajrass3ymr72flx5js5vxc601ccrmx8ny8scp0rw7j0igyjdr")))))))
f91d0d08 2901
d83bb797
JW
2902(define-public resample
2903 (package
2904 (name "resample")
2905 (version "1.8.1")
2906 (source (origin
2907 (method url-fetch)
2908 (uri (string-append "https://ccrma.stanford.edu/~jos/gz/resample-"
2909 version
2910 ".tar.gz"))
2911 (sha256 (base32
2912 "074zj8ydp05yy1hjcglfv3hkvj4cm50f9nralka1992pm6yf8yvy"))))
2913 (build-system gnu-build-system)
2914 (native-inputs
2915 `(("autoconf" ,autoconf)
2916 ("automake" ,automake)
2917 ("pkg-config" ,pkg-config)
2918 ("libtool" ,libtool)))
ce34e87c
MC
2919 (synopsis "Sampling rate conversion and filter design utilities")
2920 (description "This package contains the @command{resample} and
2921@command{windowfilter} command line utilities. The @command{resample} command
2922allows changing the sampling rate of a sound file, while the
2923@command{windowfilter} command allows to design Finite Impulse Response (FIR)
2924filters using the so-called @emph{window method}.")
d83bb797
JW
2925 (home-page "https://ccrma.stanford.edu/~jos/resample/Free_Resampling_Software.html")
2926 (license license:lgpl2.1+)))
2927
57238ff2
RW
2928(define-public rubberband
2929 (package
2930 (name "rubberband")
4bee557d 2931 (version "1.8.2")
57238ff2
RW
2932 (source (origin
2933 (method url-fetch)
2934 (uri
2935 (string-append "https://bitbucket.org/breakfastquay/rubberband/get/v"
2936 version
2937 ".tar.bz2"))
fdf359f8 2938 (file-name (string-append name "-" version ".tar.bz2"))
57238ff2
RW
2939 (sha256
2940 (base32
4bee557d 2941 "0462fmjnfqpv2qi0s6ny42drqarkr0xy9lw8frjmfgzyzl5n9294"))))
57238ff2 2942 (build-system gnu-build-system)
4bee557d
TGR
2943 (arguments
2944 `(#:tests? #f ; no check target
2945 #:phases
2946 (modify-phases %standard-phases
2947 (add-after 'unpack 'skip-jni-installation
2948 ;; ‘make install’ unconditionally installs librubberband-jni.so,
2949 ;; which is never built by ‘make all’. Skip it.
2950 (lambda _
2951 (substitute* "Makefile.in"
2952 ((".*cp -f \\$\\(JNI_TARGET\\).*") ""))
2953 #t)))))
57238ff2
RW
2954 (inputs
2955 `(("ladspa" ,ladspa)
2956 ("libsamplerate" ,libsamplerate)
2957 ("vamp" ,vamp)))
2958 (native-inputs
2959 `(("pkg-config" ,pkg-config)))
20377e4a 2960 (home-page "https://breakfastquay.com/rubberband/")
57238ff2
RW
2961 (synopsis "Audio time-stretching and pitch-shifting library")
2962 (description
2963 "Rubber Band is a library and utility program that permits changing the
2964tempo and pitch of an audio recording independently of one another.")
2965 (license license:gpl2+)))
2966
cc45cff8
RW
2967(define-public rtmidi
2968 (package
2969 (name "rtmidi")
bcdf11d6 2970 (version "4.0.0")
cc45cff8 2971 (source (origin
bcdf11d6
PL
2972 (method url-fetch)
2973 (uri (string-append "https://www.music.mcgill.ca/~gary/rtmidi"
2974 "/release/rtmidi-" version ".tar.gz"))
2975 (file-name (string-append "rtmidi-" version ".tar.gz"))
cc45cff8
RW
2976 (sha256
2977 (base32
bcdf11d6 2978 "1k962ljpnwyjw9jjiky2372khhri1wqvrj5qsalfpys31xqzw31p"))))
cc45cff8 2979 (build-system gnu-build-system)
cc45cff8
RW
2980 (inputs
2981 `(("jack" ,jack-1)
2982 ("alsa-lib" ,alsa-lib)))
2983 (native-inputs
2984 `(("autoconf" ,autoconf)
2985 ("automake" ,automake)
2986 ("libtool" ,libtool)
2987 ("pkg-config" ,pkg-config)))
bcdf11d6 2988 (home-page "https://www.music.mcgill.ca/~gary/rtmidi")
cc45cff8
RW
2989 (synopsis "Cross-platform MIDI library for C++")
2990 (description
2991 "RtMidi is a set of C++ classes (RtMidiIn, RtMidiOut, and API specific
2992classes) that provide a common cross-platform API for realtime MIDI
2993input/output.")
2994 (license license:expat)))
2995
5279eb6f
RW
2996(define-public sratom
2997 (package
2998 (name "sratom")
9dd6b8d1 2999 (version "0.6.4")
5279eb6f 3000 (source (origin
95f6e6da
MB
3001 (method url-fetch)
3002 (uri (string-append "https://download.drobilla.net/sratom-"
3003 version ".tar.bz2"))
3004 (sha256
3005 (base32
3006 "0vh0biy3ngpzzgdml309c2mqz8xq9q0hlblczb4c6alhp0a8yv0l"))))
5279eb6f 3007 (build-system waf-build-system)
95f6e6da 3008 (arguments `(#:tests? #f)) ;no check target
6e0b18bf
MB
3009 (propagated-inputs
3010 ;; In Requires of sratom-0.pc.
5279eb6f
RW
3011 `(("lv2" ,lv2)
3012 ("serd" ,serd)
3013 ("sord" ,sord)))
3014 (native-inputs
3015 `(("pkg-config" ,pkg-config)))
0d0252e4 3016 (home-page "https://drobilla.net/software/sratom/")
5279eb6f
RW
3017 (synopsis "Library for serialising LV2 atoms to/from RDF")
3018 (description
3019 "Sratom is a library for serialising LV2 atoms to/from RDF, particularly
3020the Turtle syntax.")
3021 (license license:isc)))
f3ab6ad3
RW
3022
3023(define-public suil
3024 (package
3025 (name "suil")
9bc06860 3026 (version "0.10.6")
f3ab6ad3 3027 (source (origin
8fadac95
TGR
3028 (method url-fetch)
3029 (uri (string-append "https://download.drobilla.net/suil-"
3030 version ".tar.bz2"))
3031 (sha256
3032 (base32
9bc06860 3033 "0z4v01pjw4wh65x38w6icn28wdwxz13ayl8hvn4p1g9kmamp1z06"))))
f3ab6ad3 3034 (build-system waf-build-system)
9f64f7e6 3035 (arguments
0fe041bd 3036 `(#:tests? #f)) ;no check target
f3ab6ad3
RW
3037 (inputs
3038 `(("lv2" ,lv2)
a00403c6
RW
3039 ("gtk+" ,gtk+-2)
3040 ("gtk+" ,gtk+)
9f64f7e6 3041 ("qt" ,qtbase)))
f3ab6ad3
RW
3042 (native-inputs
3043 `(("pkg-config" ,pkg-config)))
0d0252e4 3044 (home-page "https://drobilla.net/software/suil/")
f3ab6ad3
RW
3045 (synopsis "Library for loading and wrapping LV2 plugin UIs")
3046 (description
3047 "Suil is a lightweight C library for loading and wrapping LV2 plugin UIs.
3048
3049Suil makes it possible to load a UI of a toolkit in a host using another
3050toolkit. The API is designed such that hosts do not need to explicitly
3051support specific toolkits – if Suil supports a particular toolkit, then UIs in
3052that toolkit will work in all hosts that use Suil automatically.
3053
a00403c6 3054Suil currently supports every combination of Gtk, Qt, and X11.")
f3ab6ad3 3055 (license license:isc)))
db46f2fc 3056
9ffee457
RW
3057(define-public timidity++
3058 (package
3059 (name "timidity++")
3060 (version "2.14.0")
3061 (source (origin
3062 (method url-fetch)
de67e922
LF
3063 (uri (string-append "mirror://sourceforge/timidity/TiMidity++"
3064 "/TiMidity++-" version
3065 "/TiMidity++-" version ".tar.bz2"))
9ffee457
RW
3066 (sha256
3067 (base32
3068 "0xk41w4qbk23z1fvqdyfblbz10mmxsllw0svxzjw5sa9y11vczzr"))))
3069 (build-system gnu-build-system)
3070 (arguments
3071 '(#:configure-flags
3072 (list "--enable-audio=alsa,flac,jack,ao,vorbis,speex"
3073 "--enable-ncurses"
3074 "--enable-server"
3075 "--enable-alsaseq"
3076 (string-append "--with-default-path="
3077 (assoc-ref %outputs "out") "/etc/timidity"))
3078 #:phases
dc1d3cde
KK
3079 (modify-phases %standard-phases
3080 (add-after 'install 'install-config
3081 (lambda _
3082 (let ((out (string-append (assoc-ref %outputs "out")
3083 "/etc/timidity")))
3084 (mkdir-p out)
3085 (call-with-output-file
3086 (string-append out "/timidity.cfg")
3087 (lambda (port)
3088 (format port (string-append "source "
3089 (assoc-ref %build-inputs "freepats")
3090 "/share/freepats/freepats.cfg")))))
3091 #t)))))
9ffee457
RW
3092 (inputs
3093 `(("alsa-lib" ,alsa-lib)
3094 ("ao" ,ao)
3095 ("flac" ,flac)
3096 ("jack" ,jack-1)
3097 ("libogg" ,libogg)
3065bf8a 3098 ("libvorbis" ,libvorbis)
9ffee457
RW
3099 ("speex" ,speex)
3100 ("ncurses" ,ncurses)
3101 ("freepats" ,freepats)))
3102 (native-inputs
3103 `(("pkg-config" ,pkg-config)))
3104 (home-page "http://timidity.sourceforge.net/")
3105 (synopsis "Software synthesizer for playing MIDI files")
3106 (description
3107 "TiMidity++ is a software synthesizer. It can play MIDI files by
3108converting them into PCM waveform data; give it a MIDI data along with digital
3109instrument data files, then it synthesizes them in real-time, and plays. It
3110can not only play sounds, but also can save the generated waveforms into hard
3111disks as various audio file formats.")
3112 (license license:gpl2+)))
3113
db46f2fc
RW
3114(define-public vamp
3115 (package
3116 (name "vamp")
b1fb59d3 3117 (version "2.6")
db46f2fc
RW
3118 (source (origin
3119 (method url-fetch)
3120 (uri (string-append
3121 "https://code.soundsoftware.ac.uk"
494e9b91 3122 "/attachments/download/1520/vamp-plugin-sdk-"
b1fb59d3 3123 version ".tar.gz"))
9002e17c
TUBK
3124 (sha256
3125 (base32
494e9b91 3126 "0pzq0yy2kdl3jgfc2aqmh5m55nk1ild0hq8mydiiw35c6y0mglyh"))))
db46f2fc 3127 (build-system gnu-build-system)
9002e17c
TUBK
3128 (arguments
3129 `(#:tests? #f ; no check target
3130 #:phases
dc1d3cde
KK
3131 (modify-phases %standard-phases
3132 (add-after 'install 'remove-libvamp-hostsdk.la
3133 (lambda* (#:key outputs #:allow-other-keys)
3134 ;; https://bugs.launchpad.net/ubuntu/+source/vamp-plugin-sdk/+bug/1253656
3135 (for-each delete-file
3136 (let ((out (assoc-ref outputs "out")))
3137 (list (string-append out "/lib/libvamp-sdk.la")
3138 (string-append out "/lib/libvamp-hostsdk.la"))))
4f27a333 3139 #t)))))
db46f2fc
RW
3140 (inputs
3141 `(("libsndfile" ,libsndfile)))
3142 (native-inputs
3143 `(("pkg-config" ,pkg-config)))
50a67a46 3144 (home-page "https://vamp-plugins.org")
db46f2fc
RW
3145 (synopsis "Modular and extensible audio processing system")
3146 (description
3147 "Vamp is an audio processing plugin system for plugins that extract
3148descriptive information from audio data — typically referred to as audio
3149analysis plugins or audio feature extraction plugins.")
3150 (license
3151 (license:x11-style
3152 "https://code.soundsoftware.ac.uk/projects/vamp-plugin-sdk/repository/entry/COPYING"))))
9f1cdd9d
TUBK
3153
3154(define-public libsbsms
3155 (package
3156 (name "libsbsms")
3157 (version "2.0.2")
3158 (source
3159 (origin
3160 (method url-fetch)
3161 (uri (string-append "mirror://sourceforge/sbsms/sbsms/" version
3162 "/libsbsms-" version ".tar.gz"))
3163 (sha256
3164 (base32 "1vmf84iy4dkwxv887grnlsfk43fmhd9gbg26gc2kgcv40sbkvayf"))))
3165 (build-system gnu-build-system)
3166 (native-inputs `(("automake" ,automake)))
3167 (arguments
476b2877
MW
3168 `(#:configure-flags
3169 ;; Disable the use of SSE unless on x86_64.
3170 ,(if (not (string-prefix? "x86_64" (or (%current-target-system)
3171 (%current-system))))
3172 ''("--disable-sse")
3173 ''())
3174 #:phases
09c414d8
MW
3175 (modify-phases %standard-phases
3176 (add-after
3177 'unpack 'fix-ar-lib-path
3178 (lambda* (#:key inputs #:allow-other-keys)
3179 ;; Originally a symlink to '/usr/local/share/automake-1.12/ar-lib'.
3180 (delete-file "ar-lib")
3181 (symlink
3182 (string-append (assoc-ref inputs "automake") "/share/automake-"
3183 ,(package-version automake) "/ar-lib")
ee527187
MW
3184 "ar-lib")
3185 #t)))))
9f1cdd9d
TUBK
3186 (home-page "http://sbsms.sourceforge.net/")
3187 (synopsis "Library for time stretching and pitch scaling of audio")
3188 (description
3189 "SBSMS (Subband Sinusoidal Modeling Synthesis) is software for time
3190stretching and pitch scaling of audio. This package contains the library.")
3191 ;; There is no explicit declaration of a license, but a COPYING file
3192 ;; containing gpl2.
3193 (license license:gpl2)))
754a98ae 3194
01b90919
SB
3195(define-public wavpack
3196 (package
3197 (name "wavpack")
0e001b1f
TGR
3198 (version "5.3.2")
3199 (source
3200 (origin
3201 (method git-fetch)
3202 (uri (git-reference
3203 (url "https://github.com/dbry/WavPack")
3204 (commit "e4e8d191e8dd74cbdbeaef3232c16a7ef517e68d")))
3205 (sha256
3206 (base32 "1zj8svk6giy1abq3940sz32ygz7zldppxl47852zgn5wfm3l2spx"))
3207 (file-name (git-file-name name version))))
01b90919 3208 (build-system gnu-build-system)
08b7a278 3209 (arguments
0e001b1f
TGR
3210 '(#:configure-flags
3211 (list "--disable-static")
3212 #:phases
3213 (modify-phases %standard-phases
3214 (replace 'bootstrap
3215 ;; Running ./autogen.sh would cause premature configuration.
3216 (lambda _
3217 (invoke "autoreconf" "-vif")
3218 #t)))))
3219 (native-inputs
3220 `(("autoconf" ,autoconf)
3221 ("automake" ,automake)
3222 ("libtool" ,libtool)))
01b90919
SB
3223 (home-page "http://www.wavpack.com/")
3224 (synopsis "Hybrid lossless audio codec")
3225 (description
3226 "WavPack is an audio compression format with lossless, lossy and hybrid
3227compression modes. This package contains command-line programs and library to
3228encode and decode wavpack files.")
3229 (license license:bsd-3)))
3230
a176dd7e
SB
3231(define-public libmodplug
3232 (package
3233 (name "libmodplug")
06446a7d 3234 (version "0.8.9.0")
a176dd7e
SB
3235 (source (origin
3236 (method url-fetch)
3237 (uri (string-append
0f971a04 3238 "mirror://sourceforge/modplug-xmms/"
a176dd7e
SB
3239 name "/" version "/" name "-" version ".tar.gz"))
3240 (sha256
3241 (base32
06446a7d 3242 "1pnri98a603xk47smnxr551svbmgbzcw018mq1k6srbrq6kaaz25"))))
a176dd7e
SB
3243 (build-system gnu-build-system)
3244 (home-page "http://modplug-xmms.sourceforge.net/")
3245 (synopsis "Mod file playing library")
3246 (description
3247 "Libmodplug renders mod music files as raw audio data, for playing or
3248conversion. mod, .s3m, .it, .xm, and a number of lesser-known formats are
3249supported. Optional features include high-quality resampling, bass expansion,
3250surround and reverb.")
3251 (license license:public-domain)))
3252
b97b5cda
SB
3253(define-public libxmp
3254 (package
3255 (name "libxmp")
2784fca0 3256 (version "4.4.1")
b97b5cda
SB
3257 (source (origin
3258 (method url-fetch)
de67e922 3259 (uri (string-append "mirror://sourceforge/xmp/libxmp/" version "/"
b97b5cda
SB
3260 name "-" version ".tar.gz"))
3261 (sha256
3262 (base32
2784fca0 3263 "1kycz4jsyvmf7ny9227b497wc7y5ligydi6fvvldmkf8hk63ad9m"))))
b97b5cda
SB
3264 (build-system gnu-build-system)
3265 (home-page "http://xmp.sourceforge.net/")
3266 (synopsis "Module player library")
3267 (description
3268 "Libxmp is a library that renders module files to PCM data. It supports
3269over 90 mainstream and obscure module formats including Protracker (MOD),
3270Scream Tracker 3 (S3M), Fast Tracker II (XM), and Impulse Tracker (IT).")
3271 (license license:lgpl2.1+)))
3272
3ec4bba4
SB
3273(define-public xmp
3274 (package
3275 (name "xmp")
1a79d476 3276 (version "4.1.0")
3ec4bba4
SB
3277 (source (origin
3278 (method url-fetch)
de67e922 3279 (uri (string-append "mirror://sourceforge/xmp/xmp/" version "/"
3ec4bba4
SB
3280 name "-" version ".tar.gz"))
3281 (sha256
3282 (base32
1a79d476 3283 "17i8fc7x7yn3z1x963xp9iv108gxfakxmdgmpv3mlm438w3n3g8x"))))
3ec4bba4
SB
3284 (build-system gnu-build-system)
3285 (native-inputs
3286 `(("pkg-config" ,pkg-config)))
3287 (inputs
3288 `(("libxmp" ,libxmp)
3289 ("pulseaudio" ,pulseaudio)))
3290 (home-page "http://xmp.sourceforge.net/")
3291 (synopsis "Extended module player")
3292 (description
3293 "Xmp is a portable module player that plays over 90 mainstream and
3294obscure module formats, including Protracker MOD, Fasttracker II XM, Scream
3295Tracker 3 S3M and Impulse Tracker IT files.")
3296 (license license:gpl2+)))
3297
754a98ae
TUBK
3298(define-public soundtouch
3299 (package
3300 (name "soundtouch")
d87d2567 3301 (version "2.1.2")
754a98ae
TUBK
3302 (source
3303 (origin
55036ddc
TGR
3304 (method git-fetch)
3305 (uri (git-reference
3306 (url "https://gitlab.com/soundtouch/soundtouch.git")
3307 (commit version)))
3308 (file-name (git-file-name name version))
754a98ae 3309 (sha256
d87d2567 3310 (base32 "174wgm3s0inmbnkrlnspxjwm2014qhjhkbdqa5r8rbfi0nzqxzsz"))))
754a98ae
TUBK
3311 (build-system gnu-build-system)
3312 (native-inputs
3313 `(("autoconf" ,autoconf)
3314 ("automake" ,automake)
3315 ("libtool" ,libtool)
3316 ("file" ,file)))
c93bd94c 3317 (home-page "https://www.surina.net/soundtouch/")
754a98ae
TUBK
3318 (synopsis
3319 "Audio processing library for changing tempo, pitch and playback rate")
3320 (description
3321 "SoundTouch is an audio processing library for changing the tempo, pitch
3322and playback rates of audio streams or audio files. It is intended for
3323application developers writing sound processing tools that require tempo/pitch
3324control functionality, or just for playing around with the sound effects.")
3325 (license license:lgpl2.1+)))
4bddd14c 3326
d739f481
AK
3327(define-public sox
3328 (package
3329 (name "sox")
3330 (version "14.4.2")
3331 (source (origin
3332 (method url-fetch)
de67e922
LF
3333 (uri (string-append "mirror://sourceforge/sox/sox/" version "/"
3334 name "-" version ".tar.bz2"))
d739f481
AK
3335 (sha256
3336 (base32
3337 "170lx90r1nlnb2j6lg00524iwvqy72p48vii4xc5prrh8dnrb9l1"))))
3338 (build-system gnu-build-system)
3339 (arguments
3340 '(#:configure-flags
3341 ;; The upstream asks to identify the distribution to diagnose SoX
3342 ;; bug reports.
3343 '("--with-distro=Guix System Distribution")))
3344 (native-inputs
3345 `(("pkg-config" ,pkg-config)))
3346 (inputs
3347 `(("alsa-lib" ,alsa-lib)
3348 ("ao" ,ao)
3349 ("flac" ,flac)
3350 ("lame" ,lame)
3351 ("libid3tag" ,libid3tag)
3352 ("libltdl" ,libltdl)
3353 ("libmad" ,libmad)
3354 ("libpng" ,libpng)
3355 ("libvorbis" ,libvorbis)
3356 ("pulseaudio" ,pulseaudio)))
3357 (home-page "http://sox.sourceforge.net")
3358 (synopsis "Sound processing utility")
3359 (description
3360 "SoX (Sound eXchange) is a command line utility that can convert
3361various formats of computer audio files to other formats. It can also
3362apply various effects to these sound files, and, as an added bonus, SoX
3363can play and record audio files.")
3364 ;; sox.c is distributed under GPL, while the files that make up
3365 ;; libsox are licensed under LGPL.
3366 (license (list license:gpl2+ license:lgpl2.1+))))
3367
4bddd14c
TUBK
3368(define-public soxr
3369 (package
3370 (name "soxr")
9e9a211f 3371 (version "0.1.3")
4bddd14c
TUBK
3372 (source
3373 (origin
3374 (method url-fetch)
3375 (uri
3376 (string-append "mirror://sourceforge/soxr/soxr-" version
3377 "-Source.tar.xz"))
3378 (sha256
9e9a211f 3379 (base32 "12aql6svkplxq5fjycar18863hcq84c5kx8g6f4rj0lcvigw24di"))))
4bddd14c
TUBK
3380 (build-system cmake-build-system)
3381 (arguments '(#:tests? #f)) ;no 'check' target
3b3b60d0 3382 (home-page "https://sourceforge.net/p/soxr/wiki/Home/")
4bddd14c
TUBK
3383 (synopsis "One-dimensional sample-rate conversion library")
3384 (description
3385 "The SoX Resampler library (libsoxr) performs one-dimensional sample-rate
3386conversion. It may be used, for example, to resample PCM-encoded audio.")
3387 (license license:lgpl2.1+)))
49f36708
TUBK
3388
3389(define-public twolame
3390 (package
3391 (name "twolame")
196e3579 3392 (version "0.4.0")
49f36708
TUBK
3393 (source
3394 (origin
3395 (method url-fetch)
de67e922
LF
3396 (uri (string-append "mirror://sourceforge/twolame/twolame/" version
3397 "/twolame-" version ".tar.gz"))
49f36708 3398 (sha256
196e3579 3399 (base32 "0zf8sxqb02w07ah55b1y7ab643zmpbhn62spa9pqra0rc17l4dfc"))))
49f36708
TUBK
3400 (build-system gnu-build-system)
3401 (inputs
3402 `(("libsndfile" ,libsndfile)))
3403 (native-inputs
3404 `(("perl" ,perl)
3405 ("which" ,which))) ;used in tests/test.pl
3406 (home-page "http://www.twolame.org/")
3407 (synopsis "MPEG Audio Layer 2 (MP2) encoder")
3408 (description
3409 "TwoLAME is an optimised MPEG Audio Layer 2 (MP2) encoder based on
3410tooLAME by Mike Cheng, which in turn is based upon the ISO dist10 code and
3411portions of LAME.")
3412 (license license:lgpl2.1+)))
bd4464f2
TUBK
3413
3414(define-public portaudio
3415 (package
3416 (name "portaudio")
80420acb 3417 (version "190600.20161030")
bd4464f2
TUBK
3418 (source
3419 (origin
3420 (method url-fetch)
3421 (uri (string-append
3422 "http://www.portaudio.com/archives/pa_stable_v"
3423 (string-map (lambda (c) (if (char=? c #\.) #\_ c)) version)
3424 ".tgz"))
3425 (sha256
80420acb 3426 (base32 "04qmin6nj144b8qb9kkd9a52xfvm0qdgm8bg8jbl7s3frmyiv8pm"))
fc1adab1 3427 (patches (search-patches "portaudio-audacity-compat.patch"))))
bd4464f2
TUBK
3428 (build-system gnu-build-system)
3429 (inputs
3430 ;; TODO: Add ASIHPI.
3431 `(("alsa-lib" ,alsa-lib)
bcbc02fd 3432 ("jack" ,jack-1)))
cdb4048d
RW
3433 ;; Autoreconf is necessary because the audacity-compat patch modifies .in
3434 ;; files.
bd4464f2 3435 (native-inputs
b47be021
TUBK
3436 `(("autoconf" ,autoconf)
3437 ("automake" ,automake)
3438 ("libtool" ,libtool)
3439 ("pkg-config" ,pkg-config)))
86fded86 3440 (arguments
1ce6bfc2 3441 '(#:tests? #f ;no 'check' target
c9cd4a84 3442 #:parallel-build? #f ;fails on some systems
1ce6bfc2
NG
3443 #:configure-flags '("--with-pic"
3444 "--enable-cxx"
3445 ;; XXX: The following prevents a build error
3446 ;; because of missing depcomp when C++ bindings are
3447 ;; requested.
3448 "--disable-dependency-tracking")
86fded86
RW
3449 #:phases
3450 (modify-phases %standard-phases
3451 ;; This is needed for linking the static libraries
3452 (add-after 'unpack 'build-only-position-independent-code
3453 (lambda _
3454 (substitute* "configure.in"
3455 (("AC_PROG_LIBTOOL" m)
3456 (string-append m "\nAM_PROG_AR\nLT_INIT([pic-only])")))
3457 (delete-file "configure")
3458 #t))
3459 ;; Some headers are not installed by default, but are needed by
3460 ;; packages like Kaldi.
3461 (add-after 'install 'install-missing-headers
3462 (lambda* (#:key outputs #:allow-other-keys)
3463 (install-file "src/common/pa_ringbuffer.h"
3464 (string-append (assoc-ref outputs "out") "/include"))
3465 #t)))))
bd4464f2
TUBK
3466 (home-page "http://www.portaudio.com/")
3467 (synopsis "Audio I/O library")
3468 (description
3469 "PortAudio is a portable C/C++ audio I/O library providing a simple API
3470to record and/or play sound using a callback function or a blocking read/write
3471interface.")
3472 (license license:expat)))
74bbf894 3473
fe73aef4
RW
3474(define-public qsynth
3475 (package
3476 (name "qsynth")
5e4cb92e 3477 (version "0.5.7")
fe73aef4
RW
3478 (source
3479 (origin
3480 (method url-fetch)
de67e922
LF
3481 (uri (string-append "mirror://sourceforge/qsynth/qsynth/" version
3482 "/qsynth-" version ".tar.gz"))
fe73aef4 3483 (sha256
5e4cb92e 3484 (base32 "18im4w8agj60nkppwbkxqnhpp13z5li3w30kklv4lgs20rvgbvl6"))))
fe73aef4
RW
3485 (build-system gnu-build-system)
3486 (arguments
5e4cb92e 3487 `(#:tests? #f)) ; no "check" phase
598f6394 3488 (native-inputs
4ed4bb11
RW
3489 `(("qttools" ,qttools)
3490 ("pkg-config" ,pkg-config)))
fe73aef4 3491 (inputs
598f6394
DC
3492 `(("fluidsynth" ,fluidsynth)
3493 ("qtbase" ,qtbase)
3494 ("qtx11extras" ,qtx11extras)))
12c8c997 3495 (home-page "https://qsynth.sourceforge.io")
fe73aef4
RW
3496 (synopsis "Graphical user interface for FluidSynth")
3497 (description
3498 "Qsynth is a GUI front-end application for the FluidSynth SoundFont
3499synthesizer written in C++.")
3500 (license license:gpl2+)))
3501
55b596c3
TUBK
3502(define-public rsound
3503 (package
3504 (name "rsound")
3505 (version "1.1")
3506 (source
3507 (origin
458baefb
RW
3508 (method git-fetch)
3509 (uri (git-reference
b0e7b699 3510 (url "https://github.com/Themaister/RSound")
458baefb
RW
3511 (commit (string-append "v" version))))
3512 (file-name (git-file-name name version))
55b596c3 3513 (sha256
458baefb 3514 (base32 "0gspmr3klwnq98h17p5hc6ifygya4p80g4g8r7a1qavm3mv19waf"))))
55b596c3
TUBK
3515 (build-system gnu-build-system)
3516 (inputs
3517 `(("alsa-lib" ,alsa-lib)
276f49df 3518 ("jack" ,jack-1)
55b596c3
TUBK
3519 ("ao" ,ao)
3520 ("libsamplerate" ,libsamplerate)
3521 ("openal" ,openal)
3522 ("portaudio" ,portaudio)
3523 ("pulseaudio" ,pulseaudio)))
3524 (arguments
3525 '(#:phases
dc1d3cde
KK
3526 (modify-phases %standard-phases
3527 (replace 'configure
3528 (lambda* (#:key outputs #:allow-other-keys)
3529 (setenv "CC" "gcc")
c3d14484
TGR
3530 (invoke "./configure"
3531 (string-append "--prefix=" (assoc-ref outputs "out"))))))
55b596c3
TUBK
3532 ;; No 'check' target.
3533 #:tests? #f))
286ab9d3 3534 (home-page "https://themaister.net/rsound.html")
55b596c3
TUBK
3535 (synopsis "Networked audio system")
3536 (description
3537 "RSound allows you to send audio from an application and transfer it
3538directly to a different computer on your LAN network. It is an audio daemon
3539with a much different focus than most other audio daemons.")
3540 (license license:gpl3+)))
3541
caf9055c
RW
3542(define-public xjackfreak
3543 (package
3544 (name "xjackfreak")
3545 (version "1.0")
3546 (source (origin
8e5995e3
RW
3547 (method git-fetch)
3548 (uri (git-reference
b0e7b699 3549 (url "https://github.com/johnhldavis/xjackfreak")
8e5995e3
RW
3550 (commit (string-append "v" version))))
3551 (file-name (git-file-name name version))
caf9055c
RW
3552 (sha256
3553 (base32
8e5995e3 3554 "18c546qidbrj0f5wfiq5llii2192xpln0ab3r4vpr7i3wybxqjfz"))))
caf9055c
RW
3555 (build-system gnu-build-system)
3556 (arguments
3557 `(#:make-flags
3558 (list (string-append "docdir=" (assoc-ref %outputs "out")
3559 "/share/doc/xjackfreak"))))
3560 (inputs
3561 `(("jack" ,jack-1)
3562 ("libx11" ,libx11)
3563 ("libxt" ,libxt)
3564 ("libxext" ,libxext)))
3565 (native-inputs
3566 `(("pkg-config" ,pkg-config)))
3567 (home-page "https://github.com/johnhldavis/xjackfreak")
3568 (synopsis "JACK audio frequency analyzer and display")
3569 (description
3570 "XJackFreak is an audio analysis and equalizing tool for the Jack Audio
3571Connection Kit. It can display the FFT of any input, modify it and output the
3572result.")
3573 (license license:gpl3+)))
3574
d73f7909
RW
3575(define-public zita-convolver
3576 (package
3577 (name "zita-convolver")
1c1ce52a 3578 (version "4.0.3")
d73f7909
RW
3579 (source (origin
3580 (method url-fetch)
3581 (uri (string-append
3582 "http://kokkinizita.linuxaudio.org"
3583 "/linuxaudio/downloads/zita-convolver-"
3584 version ".tar.bz2"))
29e255ca
SB
3585 (snippet
3586 ;; Don't optimize for a specific processor architecture.
6cbee49d 3587 '(begin
1c1ce52a 3588 (substitute* "source/Makefile"
6cbee49d
MW
3589 (("^CXXFLAGS \\+= -march=native") ""))
3590 #t))
29e255ca 3591 (modules '((guix build utils)))
d73f7909
RW
3592 (sha256
3593 (base32
1c1ce52a 3594 "0prji66p86z2bzminywkwchr5bfgxcg2i8y803pydd1hzf2198cs"))))
d73f7909
RW
3595 (build-system gnu-build-system)
3596 (arguments
3597 `(#:tests? #f ; no "check" target
1c1ce52a
AT
3598 #:make-flags
3599 (list (string-append "PREFIX=" (assoc-ref %outputs "out"))
3600 (string-append "SUFFIX="))
d73f7909 3601 #:phases
dc1d3cde
KK
3602 (modify-phases %standard-phases
3603 (add-after 'unpack 'patch-makefile-and-enter-directory
3604 (lambda _
1c1ce52a 3605 (substitute* "source/Makefile"
dc1d3cde
KK
3606 (("ldconfig") "true")
3607 (("^LIBDIR =.*") "LIBDIR = lib\n"))
1c1ce52a 3608 (chdir "source")
ee527187 3609 #t))
4f27a333
MB
3610 (add-after 'install 'install-symlink
3611 (lambda _
3612 (symlink "libzita-convolver.so"
3613 (string-append (assoc-ref %outputs "out")
1c1ce52a 3614 "/lib/libzita-convolver.so.4"))
ee527187 3615 #t))
d73f7909 3616 ;; no configure script
4f27a333 3617 (delete 'configure))))
d73f7909 3618 (inputs `(("fftwf" ,fftwf)))
4817bb92 3619 (home-page "https://kokkinizita.linuxaudio.org")
d73f7909
RW
3620 (synopsis "Fast, partitioned convolution engine library")
3621 (description
3622 "Zita convolver is a C++ library providing a real-time convolution
3623engine.")
3624 (license license:gpl3+)))
3625
b7ed6784
RW
3626(define-public zita-resampler
3627 (package
3628 (name "zita-resampler")
a35cd752 3629 (version "1.6.2")
b7ed6784
RW
3630 (source (origin
3631 (method url-fetch)
3632 (uri (string-append
3633 "http://kokkinizita.linuxaudio.org"
3634 "/linuxaudio/downloads/zita-resampler-"
3635 version ".tar.bz2"))
6dff4955
SB
3636 (snippet
3637 ;; Don't optimize for a specific processor architecture.
6cbee49d 3638 '(begin
a35cd752 3639 (substitute* '("apps/Makefile" "source/Makefile")
6cbee49d
MW
3640 (("^CXXFLAGS \\+= -march=native") ""))
3641 #t))
6dff4955 3642 (modules '((guix build utils)))
b7ed6784
RW
3643 (sha256
3644 (base32
a35cd752 3645 "1my5k2dh2dkvjp6xjnf9qy6i7s28z13kw1n9pwa4a2cpwbzawfr3"))))
b7ed6784
RW
3646 (build-system gnu-build-system)
3647 (arguments
3648 `(#:tests? #f ; no "check" target
a35cd752
AT
3649 #:make-flags
3650 (list (string-append "PREFIX=" (assoc-ref %outputs "out"))
3651 (string-append "SUFFIX="))
b7ed6784
RW
3652 #:phases
3653 (modify-phases %standard-phases
3654 (add-after
3655 'unpack 'patch-makefile-and-enter-directory
3656 (lambda _
a35cd752 3657 (substitute* "source/Makefile"
b7ed6784
RW
3658 (("ldconfig") "true")
3659 (("^LIBDIR =.*") "LIBDIR = lib\n"))
a35cd752 3660 (chdir "source")
b7ed6784
RW
3661 #t))
3662 (add-after
3663 'install 'install-symlink
3664 (lambda _
3665 (symlink "libzita-resampler.so"
3666 (string-append (assoc-ref %outputs "out")
ee527187
MW
3667 "/lib/libzita-resampler.so.1"))
3668 #t))
b7ed6784
RW
3669 ;; no configure script
3670 (delete 'configure))))
4817bb92 3671 (home-page "https://kokkinizita.linuxaudio.org/linuxaudio/zita-resampler/resampler.html")
b7ed6784
RW
3672 (synopsis "C++ library for resampling audio signals")
3673 (description
3674 "Libzita-resampler is a C++ library for resampling audio signals. It is
3675designed to be used within a real-time processing context, to be fast, and to
3676provide high-quality sample rate conversion.")
3677 (license license:gpl3+)))
3678
74bbf894
RW
3679(define-public zita-alsa-pcmi
3680 (package
3681 (name "zita-alsa-pcmi")
d0f0e2bd 3682 (version "0.3.2")
74bbf894
RW
3683 (source (origin
3684 (method url-fetch)
3685 (uri (string-append
3686 "http://kokkinizita.linuxaudio.org"
3687 "/linuxaudio/downloads/zita-alsa-pcmi-"
3688 version ".tar.bz2"))
3689 (sha256
3690 (base32
d0f0e2bd 3691 "12d7vdg74yh21w69qi0wg57iz4876j94qbiq09bvscih6xz9y78s"))))
74bbf894
RW
3692 (build-system gnu-build-system)
3693 (arguments
3694 `(#:tests? #f ; no "check" target
d0f0e2bd
AT
3695 #:make-flags
3696 (list (string-append "PREFIX=" (assoc-ref %outputs "out"))
3697 (string-append "SUFFIX="))
74bbf894 3698 #:phases
dc1d3cde
KK
3699 (modify-phases %standard-phases
3700 (add-after 'unpack 'patch-makefile-and-enter-directory
3701 (lambda _
d0f0e2bd 3702 (substitute* "source/Makefile"
dc1d3cde
KK
3703 (("ldconfig") "true")
3704 (("^LIBDIR =.*") "LIBDIR = lib\n"))
d0f0e2bd 3705 (chdir "source")
dc1d3cde
KK
3706 #t))
3707 (add-after 'install 'install-symlink
3708 (lambda _
3709 (symlink "libzita-alsa-pcmi.so"
3710 (string-append (assoc-ref %outputs "out")
ee527187
MW
3711 "/lib/libzita-alsa-pcmi.so.0"))
3712 #t))
dc1d3cde
KK
3713 ;; no configure script
3714 (delete 'configure))))
74bbf894
RW
3715 (inputs
3716 `(("alsa-lib" ,alsa-lib)
3717 ("fftw" ,fftw)))
4817bb92 3718 (home-page "https://kokkinizita.linuxaudio.org")
74bbf894
RW
3719 (synopsis "C++ wrapper around the ALSA API")
3720 (description
3721 "Zita-alsa-pcmi is a C++ wrapper around the ALSA API. It provides easy
3722access to ALSA PCM devices, taking care of the many functions required to
3723open, initialise and use a hw: device in mmap mode, and providing floating
3724point audio data.")
3725 (license license:gpl3+)))
6da16993
LF
3726
3727(define-public cuetools
3728 (package
3729 (name "cuetools")
3730 (version "1.4.1")
3731 (source (origin
4289a306
RW
3732 (method git-fetch)
3733 (uri (git-reference
b0e7b699 3734 (url "https://github.com/svend/cuetools")
4289a306
RW
3735 (commit version)))
3736 (file-name (git-file-name name version))
6da16993
LF
3737 (sha256
3738 (base32
4289a306 3739 "02ksv1ahf1v4cr2xbclsfv5x17m9ivzbssb5r8xjm97yh8a7spa3"))))
6da16993 3740 (build-system gnu-build-system)
4289a306 3741 ;; The source checkout is not bootstrapped.
6da16993
LF
3742 (native-inputs
3743 `(("autoconf" ,autoconf)
3744 ("automake" ,automake)
3745 ("flex" ,flex)
3746 ("bison" ,bison)))
3747 (synopsis "Cue and toc file parsers and utilities")
3748 (description "Cuetools is a set of programs that are useful for manipulating
3749and using CUE sheet (cue) files and Table of Contents (toc) files. CUE and TOC
3750files are a way to represent the layout of a data or audio CD in a
3751machine-readable ASCII format.")
3752 (home-page "https://github.com/svend/cuetools")
3753 (license license:gpl2+)))
6819a8dd
LF
3754
3755(define-public shntool
3756 (package
3757 (name "shntool")
3758 (version "3.0.10")
3759 (source (origin
3760 (method url-fetch)
3761 (uri (string-append "http://etree.org/shnutils/shntool/dist/src/"
3762 "shntool-" version ".tar.gz"))
3763 (sha256
3764 (base32
3765 "00i1rbjaaws3drkhiczaign3lnbhr161b7rbnjr8z83w8yn2wc3l"))))
3766 (build-system gnu-build-system)
3767 (synopsis "WAVE audio data processing tool")
3768 (description "shntool is a multi-purpose WAVE data processing and reporting
3769utility. File formats are abstracted from its core, so it can process any file
3770that contains WAVE data, compressed or not---provided there exists a format
d5b357ec
LF
3771module to handle that particular file type. It can also generate CUE files, and
3772use them split WAVE data into multiple files.")
6819a8dd 3773 (home-page "http://etree.org/shnutils/shntool/")
6ac2af78
LF
3774 ;; 'install-sh' bears the x11 license
3775 (license (list license:gpl2+ license:x11))))
680b54c5
DT
3776
3777(define-public dcadec
3778 (package
3779 (name "dcadec")
3780 (version "0.2.0")
3781 (source (origin
b249ff5d
RW
3782 (method git-fetch)
3783 (uri (git-reference
b0e7b699 3784 (url "https://github.com/foo86/dcadec")
b249ff5d
RW
3785 (commit (string-append "v" version))))
3786 (file-name (git-file-name name version))
680b54c5
DT
3787 (sha256
3788 (base32
b249ff5d 3789 "07nd0ajizrp1w02bsyfcv18431r8m8rq8gjfmz9wmckpg7cxj2hs"))))
680b54c5
DT
3790 (build-system gnu-build-system)
3791 (arguments
3792 ;; Test files are missing: https://github.com/foo86/dcadec/issues/53
3793 '(#:tests? #f
3794 #:make-flags
3795 (list "CC=gcc"
3796 ;; Build shared library.
3797 "CONFIG_SHARED=1"
3798 (string-append "PREFIX=" (assoc-ref %outputs "out"))
3799 ;; Set proper runpath.
3800 (string-append "LDFLAGS=-Wl,-rpath="
3801 (assoc-ref %outputs "out")
3802 "/lib"))
3803 #:phases
3804 (modify-phases %standard-phases
3805 ;; No configure script, just a hand-written Makefile.
3806 (delete 'configure))))
3807 (synopsis "DTS Coherent Acoustics decoder")
3808 (description "Dcadec is a DTS Coherent Acoustics surround sound decoder
3809with support for HD extensions.")
3810 (home-page "https://github.com/foo86/dcadec")
3811 (license license:lgpl2.1+)))
e87c7ec2
AG
3812
3813(define-public bs1770gain
3814 (package
3815 (name "bs1770gain")
d6af2737 3816 (version "0.7.0")
f295c083 3817 (home-page "https://manpages.debian.org/sid/bs1770gain/bs1770gain.1.en.html")
e87c7ec2
AG
3818 (source
3819 (origin
3820 (method url-fetch)
3821 (uri (string-append "mirror://sourceforge/bs1770gain/bs1770gain/"
3822 version "/bs1770gain-" version ".tar.gz"))
3823 (sha256
d6af2737 3824 (base32 "0a2dcaxvxy5m3a5sb1lhplsymvz3ypaiidc5xn9qy01h53zvyvkp"))
17098a49
LF
3825 (modules '((guix build utils)))
3826 (snippet
f295c083 3827 `(begin
17098a49 3828 ;; XXX
39c746f0
TGR
3829 (substitute* (find-files "." "\\.[ch]$")
3830 (("^ \\* N..o.*") ""))
a2931b14 3831 (substitute* "libbg/bgx.c"
39c746f0
TGR
3832 (("#define BG.* ") "#define BS ")
3833 (("BG.*NO?.*N.*S.*E.*N.*SE?") "NO")
a2931b14
TGR
3834 (("\"( #|N).*\"") "\"\""))
3835 (substitute* (list "config.h"
3836 "configure.ac"
3837 "configure")
3838 (("https?://bs1770gain[^/]*/")
f295c083 3839 ,home-page))
2777dc75 3840 #t))))
e87c7ec2
AG
3841 (build-system gnu-build-system)
3842 (inputs `(("ffmpeg" ,ffmpeg)
3843 ("sox" ,sox)))
e87c7ec2
AG
3844 (synopsis "Tool to adjust loudness of media files")
3845 (description
3846 "BS1770GAIN is a loudness scanner compliant with ITU-R BS.1770 and its
3847flavors EBU R128, ATSC A/85, and ReplayGain 2.0. It helps normalizing the
3848loudness of audio and video files to the same level.")
3849 (license license:gpl2+)))
eb64bde1
EE
3850
3851(define-public filteraudio
3852 (let ((revision "1")
3853 (commit "2fc669581e2a0ff87fba8de85861b49133306094"))
3854 (package
3855 (name "filteraudio")
3856 (version (string-append "0.0.0-" revision "."
3857 (string-take commit 7)))
3858 (source
3859 (origin
3860 (method git-fetch)
3861 (uri (git-reference
b0e7b699 3862 (url "https://github.com/irungentoo/filter_audio")
eb64bde1
EE
3863 (commit commit)))
3864 (file-name (string-append name "-" version "-checkout"))
3865 (sha256
3866 (base32
3867 "0hbb290n3wb23f2k692a6bhc23nnqmxqi9sc9j15pnya8wifw64g"))))
3868 (build-system gnu-build-system)
3869 (arguments
3870 '(#:make-flags (list (string-append "PREFIX=" %output)
3871 "CC=gcc")
3872 #:tests? #f ; No tests
3873 #:phases
3874 (modify-phases %standard-phases
3875 ;; No configure script
3876 (delete 'configure))))
3877 (synopsis "Lightweight audio filtering library")
3878 (description "An easy to use audio filtering library made from webrtc
3879code, used in @code{libtoxcore}.")
3880 (home-page "https://github.com/irungentoo/filter_audio")
3881 (license license:bsd-3))))
9a4c032c
LG
3882
3883(define-public gsm
3884 (package
3885 (name "gsm")
5e16e440 3886 (version "1.0.19")
9a4c032c
LG
3887 (source
3888 (origin
3889 (method url-fetch)
3890 (uri
3891 (string-append "http://www.quut.com/" name "/" name
3892 "-" version ".tar.gz"))
3893 (sha256
3894 (base32
5e16e440 3895 "1xkha9ss5g5qnfaybi8il0mcvp8knwg9plgh8404vh58d0pna0s9"))))
9a4c032c
LG
3896 (build-system gnu-build-system)
3897 (arguments
3898 `(#:test-target "tst"
5b05f8e9 3899 #:make-flags (list (string-append "INSTALL_ROOT=" %output))
9a4c032c
LG
3900 #:phases
3901 (modify-phases %standard-phases
5b05f8e9
MC
3902 (add-after 'unpack 'add-fpic-ccflag
3903 (lambda _
3904 ;; The -fPIC compiler option is needed when building
3905 ;; mediastreamer.
3906 (substitute* "Makefile"
3907 (("^CCFLAGS.*" all)
b6b07568 3908 (string-append all "CCFLAGS += -fPIC\n")))
5b05f8e9 3909 #t))
9a4c032c
LG
3910 (add-before 'install 'pre-install
3911 (lambda _
3912 (let ((out (assoc-ref %outputs "out")))
9a4c032c
LG
3913 (mkdir-p (string-append out "/inc"))
3914 (mkdir-p (string-append out "/man"))
3915 (mkdir-p (string-append out "/man/man1"))
3916 (mkdir-p (string-append out "/man/man3"))
3917 (mkdir-p (string-append out "/bin"))
ee527187
MW
3918 (mkdir-p (string-append out "/lib")))
3919 #t))
9a4c032c
LG
3920 (add-after 'install 'post-install
3921 (lambda _
3922 (let ((out (assoc-ref %outputs "out")))
3923 (rename-file (string-append out "/inc")
3924 (string-append out "/include"))
3925 (mkdir-p (string-append out "/include/gsm"))
3926 (copy-recursively "inc"
ee527187
MW
3927 (string-append out "/include/gsm")))
3928 #t))
aabe29af 3929 (delete 'configure)))) ; no configure script
9a4c032c
LG
3930 (synopsis "GSM 06.10 lossy speech compression library")
3931 (description "This C library provides an encoder and a decoder for the GSM
393206.10 RPE-LTP lossy speech compression algorithm.")
3933 (home-page "http://quut.com/gsm/")
3934 (license (license:non-copyleft "file://COPYRIGHT"))))
84d9abe4
DM
3935
3936(define-public python-pyalsaaudio
3937 (package
3938 (name "python-pyalsaaudio")
3939 (version "0.8.4")
3940 (source (origin
3941 (method url-fetch)
3942 (uri (pypi-uri "pyalsaaudio" version))
3943 (sha256
3944 (base32
3945 "1180ypn9596rq4b7y7dyv627j1q0fqilmkkrckclnzsdakdgis44"))))
3946 (build-system python-build-system)
3947 (arguments
3948 `(#:tests? #f)) ; tests require access to ALSA devices.
3949 (inputs
3950 `(("alsa-lib" ,alsa-lib)))
5adaeb36 3951 (home-page "https://larsimmisch.github.io/pyalsaaudio/")
84d9abe4
DM
3952 (synopsis "ALSA wrappers for Python")
3953 (description
3954 "This package contains wrappers for accessing the ALSA API from Python.
3955It is currently fairly complete for PCM devices, and has some support for
3956mixers.")
3957 (license license:psfl)))
3958
3959(define-public python2-pyalsaaudio
3960 (package-with-python2 python-pyalsaaudio))
d0c8e524 3961
dba33ca3
RW
3962(define-public bluez-alsa
3963 (package
3964 (name "bluez-alsa")
9f9520a1 3965 (version "2.0.0")
dba33ca3
RW
3966 (source (origin
3967 ;; The tarballs are mere snapshots and don't contain a
3968 ;; bootstrapped build system.
3969 (method git-fetch)
3970 (uri (git-reference
b0e7b699 3971 (url "https://github.com/Arkq/bluez-alsa")
dba33ca3 3972 (commit (string-append "v" version))))
9f9520a1 3973 (file-name (git-file-name name version))
dba33ca3
RW
3974 (sha256
3975 (base32
9f9520a1 3976 "08mppgnjf1j2733bk9yf0cny6rfxxwiys0s62lz2zd2lpdl6d9lz"))))
dba33ca3 3977 (build-system gnu-build-system)
9f9520a1
RW
3978 (arguments
3979 `(#:configure-flags
3980 (list (string-append "--with-alsaplugindir="
3981 (assoc-ref %outputs "out")
3982 "/lib/alsa-lib")
3983 (string-append "--with-dbusconfdir="
3984 (assoc-ref %outputs "out")
8f2e2120 3985 "/etc/dbus-1/system.d"))))
dba33ca3
RW
3986 (native-inputs
3987 `(("autoconf" ,autoconf)
3988 ("automake" ,automake)
3989 ("libtool" ,libtool)
3990 ("pkg-config" ,pkg-config)))
3991 (inputs
3992 `(("alsa-lib" ,alsa-lib)
3993 ("bluez" ,bluez)
9f9520a1 3994 ("dbus" ,dbus)
dba33ca3
RW
3995 ("glib" ,glib)
3996 ("libbsd" ,libbsd)
3997 ("ncurses" ,ncurses)
3998 ("ortp" ,ortp)
3999 ("sbc" ,sbc)))
4000 (home-page "https://github.com/Arkq/bluez-alsa")
4001 (synopsis "Bluetooth ALSA backend")
4002 (description "This project is a rebirth of a direct integration between
4003Bluez and ALSA. Since Bluez >= 5, the build-in integration has been removed
4004in favor of 3rd party audio applications. From now on, Bluez acts as a
4005middleware between an audio application, which implements Bluetooth audio
4006profile, and a Bluetooth audio device. BlueALSA registers all known Bluetooth
4007audio profiles in Bluez, so in theory every Bluetooth device (with audio
4008capabilities) can be connected. In order to access the audio stream, one has
4009to connect to the ALSA PCM device called @code{bluealsa}. The device is based
4010on the ALSA software PCM plugin.")
4011 (license license:expat)))
4012
d0c8e524
SB
4013(define-public snd
4014 (package
4015 (name "snd")
7ee3d015 4016 (version "20.7")
d0c8e524
SB
4017 (source (origin
4018 (method url-fetch)
4019 (uri (string-append "ftp://ccrma-ftp.stanford.edu/pub/Lisp/"
4020 "snd-" version ".tar.gz"))
4021 (sha256
4022 (base32
7ee3d015 4023 "1kd422krz8ln4m8g3p14wfplcq8lgpzly9297rpbvyc94dc6sdwj"))))
d0c8e524
SB
4024 (build-system glib-or-gtk-build-system)
4025 (arguments
4ae9274a 4026 `(#:tests? #f ; no tests
d0c8e524
SB
4027 #:out-of-source? #f ; for the 'install-doc' phase
4028 #:configure-flags
4029 (let* ((out (assoc-ref %outputs "out"))
94774876
TGR
4030 (docdir (string-append out "/share/doc/"
4031 ,name "-" ,version)))
d0c8e524
SB
4032 (list "--with-alsa" "--with-jack" "--with-gmp"
4033 (string-append "--with-doc-dir=" docdir)))
4034 #:phases
4035 (modify-phases %standard-phases
4036 (add-after 'install 'install-doc
4037 (lambda* (#:key outputs #:allow-other-keys)
4038 (let* ((out (assoc-ref outputs "out"))
4ae9274a
TGR
4039 (doc (string-append out "/share/doc/"
4040 ,name "-" ,version)))
d0c8e524
SB
4041 (for-each
4042 (lambda (f)
4ae9274a 4043 (install-file f doc))
3ef664d0 4044 (find-files "." "\\.html$"))
4ae9274a 4045 (copy-recursively "pix" (string-append doc "/pix"))
d0c8e524
SB
4046 #t))))))
4047 (native-inputs
4048 `(("pkg-config" ,pkg-config)))
4049 (inputs
4050 `(("alsa-lib" ,alsa-lib)
4051 ("fftw" ,fftw)
4052 ("flac" ,flac)
4053 ("gmp" ,gmp)
4054 ("gsl" ,gsl)
4055 ("gtk+" ,gtk+)
4056 ("jack" ,jack-1)
4057 ("libsamplerate" ,libsamplerate)
4058 ("mpc" ,mpc)
4059 ("mpfr" ,mpfr)
4060 ("mpg123" ,mpg123)
4061 ("speex" ,speex)
4062 ("timidity++" ,timidity++)
4063 ("vorbis-tools" ,vorbis-tools)
4064 ("wavpack" ,wavpack)))
4065 (synopsis "Sound editor")
4066 (home-page "https://ccrma.stanford.edu/software/snd/")
4067 (description
4068 "Snd is a sound editor modelled loosely after Emacs. It can be
4069customized and extended using either the s7 Scheme implementation (included in
4070the Snd sources), Ruby, or Forth.")
4071 (license (license:non-copyleft "file://COPYING"))))
adedbe95 4072
cf31d5e1
RW
4073(define-public noise-repellent
4074 (package
4075 (name "noise-repellent")
f6c8ba31 4076 (version "0.1.5")
cf31d5e1
RW
4077 (source (origin
4078 (method git-fetch)
4079 (uri (git-reference
b0e7b699 4080 (url "https://github.com/lucianodato/noise-repellent")
cf31d5e1
RW
4081 (commit version)))
4082 (file-name (string-append name "-" version "-checkout"))
4083 (sha256
4084 (base32
f6c8ba31
TGR
4085 "0hb89x9i2knzan46q4nwscf5zmnb2nwf4w13xl2c0y1mx1ls1mwl"))))
4086 (build-system meson-build-system)
cf31d5e1 4087 (arguments
f6c8ba31
TGR
4088 `(#:configure-flags
4089 (list (string-append "--prefix=" (assoc-ref %outputs "out")
4090 "/lib/lv2"))))
cf31d5e1
RW
4091 (inputs
4092 `(("lv2" ,lv2)
4093 ("fftwf" ,fftwf)))
4094 (native-inputs
4095 `(("pkg-config" ,pkg-config)))
4096 (home-page "https://github.com/lucianodato/noise-repellent")
4097 (synopsis "LV2 plugin for broadband noise reduction")
4098 (description "Noise Repellent is an LV2 plugin to reduce noise. It has
4099the following features:
4100
4101@enumerate
4102@item Spectral gating and spectral subtraction suppression rule
4103@item Adaptive and manual noise thresholds estimation
4104@item Adjustable noise floor
4105@item Adjustable offset of thresholds to perform over-subtraction
4106@item Time smoothing and a masking estimation to reduce artifacts
4107@item Basic onset detector to avoid transients suppression
4108@item Whitening of the noise floor to mask artifacts and to recover higher
4109 frequencies
4110@item Option to listen to the residual signal
4111@item Soft bypass
4112@item Noise profile saved with the session
4113@end enumerate
4114")
4115 (license license:lgpl3+)))
4116
adedbe95
OP
4117(define-public cli-visualizer
4118 (package
4119 (name "cli-visualizer")
e121cb87 4120 (version "1.8")
adedbe95
OP
4121 (source
4122 (origin
c2a2d364
RW
4123 (method git-fetch)
4124 (uri (git-reference
b0e7b699 4125 (url "https://github.com/dpayne/cli-visualizer")
e121cb87 4126 (commit (string-append "v" version))))
c2a2d364 4127 (file-name (git-file-name name version))
adedbe95 4128 (sha256
e121cb87
TGR
4129 (base32 "003mbbwsz43mg3d7llphpypqa9g7rs1p1cdbqi1mbc2bfrc1gcq2"))))
4130 (build-system cmake-build-system)
adedbe95 4131 (native-inputs
e121cb87
TGR
4132 ;; TODO: Try using the latest googletest for versions > 1.8.
4133 `( ;; ("googletest" ,googletest-1.8)
4134 ("which" ,which)))
adedbe95
OP
4135 (inputs
4136 `(("fftw" ,fftw)
adedbe95
OP
4137 ("ncurses" ,ncurses)
4138 ("pulseaudio" ,pulseaudio)))
4139 (arguments
e121cb87
TGR
4140 '(#:tests? #f
4141 ;; XXX Enable tests after patching them to use the system googletest.
4142 ;; #:configure-flags (list "-DVIS_WITH_TESTS=true")
adedbe95
OP
4143 #:phases
4144 (modify-phases %standard-phases
e121cb87
TGR
4145 (add-after 'install 'install-examples
4146 (lambda* (#:key outputs #:allow-other-keys)
4147 (with-directory-excursion "../source/examples"
4148 (delete-file "mac_osx_config")
4149 (for-each (lambda (file)
4150 (install-file file
4151 (string-append
4152 (assoc-ref outputs "out")
4153 "/share/doc")))
4154 (find-files ".")))
adedbe95
OP
4155 #t)))))
4156 (home-page "https://github.com/dpayne/cli-visualizer/")
4157 (synopsis "Command-line audio visualizer")
4158 (description "@code{cli-visualizer} displays fast-Fourier
4159transforms (FFTs) of the sound being played, as well as other graphical
4160representations.")
4161 (license license:expat)))
c2c0d661
OP
4162
4163(define-public cava
4164 (package
4165 (name "cava")
042fa638 4166 (version "0.6.1")
c2c0d661 4167 (source (origin
a7fde1a8
RW
4168 (method git-fetch)
4169 (uri (git-reference
b0e7b699 4170 (url "https://github.com/karlstav/cava")
a7fde1a8
RW
4171 (commit version)))
4172 (file-name (git-file-name name version))
c2c0d661
OP
4173 (sha256
4174 (base32
a7fde1a8 4175 "1kvhqgijs29909w3sq9m0bslx2zxxn4b3i07kdz4hb0dqkppxpjy"))))
c2c0d661
OP
4176 (build-system gnu-build-system)
4177 (native-inputs
4178 `(("autoconf" ,autoconf)
4179 ("automake" ,automake)
4180 ("libtool" ,libtool)))
4181 (inputs
4182 `(("fftw" ,fftw)
4183 ("ncurses" ,ncurses)
4184 ("pulseaudio" ,pulseaudio)))
4185 (arguments
4186 `(#:configure-flags
4187 (list (string-append "PREFIX=" %output)
9e3e80ba 4188 (string-append "FONT_DIR=" %output "/share/consolefonts"))
c2c0d661
OP
4189 #:make-flags
4190 (let ((lib (string-append %output "/lib")))
4191 (list (string-append "cava_LDFLAGS = -L" lib " -Wl,-rpath " lib)))
4192 #:phases
4193 (modify-phases %standard-phases
189be331 4194 (replace 'bootstrap
c2c0d661
OP
4195 (lambda* (#:key outputs #:allow-other-keys)
4196 (setenv "HOME" (getcwd))
4197 (invoke "sh" "autogen.sh")))
4198 (add-before 'build 'make-cava-ldflags
4199 (lambda* (#:key outputs #:allow-other-keys)
ee527187
MW
4200 (mkdir-p (string-append (assoc-ref outputs "out") "/lib"))
4201 #t))
c2c0d661
OP
4202 (add-after 'install 'data
4203 (lambda* (#:key outputs #:allow-other-keys)
4204 (for-each (lambda (file)
4205 (install-file file
4206 (string-append (assoc-ref outputs "out")
4207 "/share/doc/examples")))
ee527187
MW
4208 (find-files "example_files"))
4209 #t)))))
c2c0d661
OP
4210 (home-page "https://karlstav.github.io/cava/")
4211 (synopsis "Console audio visualizer for ALSA, MPD, and PulseAudio")
4212 (description "C.A.V.A. is a bar audio spectrum visualizer for the terminal
4213using ALSA, MPD, PulseAudio, or a FIFO buffer as its input.")
4214 (license license:expat)))
9073c875 4215
4216(define-public fluid-3
4217 (let ((commit "871c8ce2002e8b3c198f532fdb4fbcce7914f951"))
4218 (package
4219 (name "fluid-3")
4220 (version "2.1")
4221 (source
4222 (origin
4223 (method url-fetch)
4224 ;; Only one file is required, but the release bundles the whole
4225 ;; software which is 50MiB as tar and 200MiB unpacked. The website
4226 ;; directly links the soundfont release to the github file download.
4227 (uri (string-append "https://github.com/musescore/MuseScore/raw/"
4228 commit "/share/sound/FluidR3Mono_GM.sf3"))
4229 (file-name (string-append name "-" version ".sf3"))
4230 (sha256
4231 (base32
4232 "1hjfg5i15bw9279007xs92zsggjgn4s4k9pc00s851l3kvc6dkfg"))))
4233 (build-system trivial-build-system)
4234 (arguments
4235 `(#:modules ((guix build utils))
4236 #:builder
4237 (begin
4238 (use-modules (guix build utils))
4239 (let ((file (assoc-ref %build-inputs "source"))
4240 (out (string-append %output "/share/soundfonts")))
4241 (mkdir-p out)
e3cfef22
MW
4242 (copy-file file (string-append out "/FluidR3Mono_GM.sf3"))
4243 #t))))
9073c875 4244 (home-page "https://github.com/musescore/MuseScore/tree/master/share/sound")
4245 (synopsis "Pro-quality GM soundfont")
4246 (description "Fluid-3 is Frank Wen's pro-quality GM soundfont.")
4247 (license license:expat))))
5c40a69f
LF
4248
4249(define-public libfdk
b8930fd8
LF
4250 (package
4251 (name "libfdk")
4252 (version "2.0.1")
4253 (source
4254 (origin
4255 (method git-fetch)
4256 (uri (git-reference
4257 (url "https://github.com/mstorsjo/fdk-aac")
4258 (commit (string-append "v" version))))
4259 (file-name (git-file-name name version))
4260 (sha256
4261 (base32
4262 "1fkrnzs78fmj11n9z3l0w53i2fl16jcfiyavwidck9bzmkmsf486"))))
4263 (build-system gnu-build-system)
4264 (native-inputs
4265 `(("autoconf" ,autoconf)
4266 ("automake" ,automake)
4267 ("libtool" ,libtool)))
4268 (home-page "https://github.com/mstorsjo/fdk-aac")
4269 (synopsis "Fraunhofer FDK AAC library")
4270 (description "FDK is a library for encoding and decoding Advanced Audio
5c40a69f
LF
4271Coding (AAC) format audio, developed by Fraunhofer IIS, and included as part of
4272Android. It supports several Audio Object Types including MPEG-2 and MPEG-4 AAC
4273LC, HE-AAC (AAC LC + SBR), HE-AACv2 (LC + SBR + PS) as well AAC-LD (low delay)
4274and AAC-ELD (enhanced low delay) for real-time communication. The encoding
4275library supports sample rates up to 96 kHz and up to eight channels (7.1
b8930fd8
LF
4276 surround).")
4277 (license (license:fsf-free "https://github.com/mstorsjo/fdk-aac/blob/master/NOTICE"
4278 "https://www.gnu.org/licenses/license-list.html#fdk"))))
ef8517f2
EB
4279
4280(define-public libopenshot-audio
4281 (package
4282 (name "libopenshot-audio")
f5756687 4283 (version "0.2.0")
ef8517f2
EB
4284 (source (origin
4285 (method git-fetch)
4286 (uri (git-reference
4287 (url "https://github.com/OpenShot/libopenshot-audio")
4288 (commit (string-append "v" version))))
4289 (file-name (git-file-name name version))
4290 (sha256
4291 (base32
f5756687 4292 "13if0m5mvlqly8gmbhschzb9papkgp3yqivklhb949dhy16m8zgf"))))
ef8517f2
EB
4293 (build-system cmake-build-system)
4294 (inputs
4295 `(("alsa-lib" ,alsa-lib)
4296 ;; The following are for JUCE GUI components:
4297 ("libx11" ,libx11)
4298 ("freetype" ,freetype)
4299 ("libxrandr" ,libxrandr)
4300 ("libxinerama" ,libxinerama)
4301 ("libxcursor" ,libxcursor)))
4302 (arguments
4303 `(#:tests? #f ;there are no tests
4304 #:configure-flags
4305 (list (string-append "-DCMAKE_CXX_FLAGS=-I"
4306 (assoc-ref %build-inputs "freetype")
4307 "/include/freetype2"))))
4308 (home-page "https://openshot.org")
4309 (synopsis "Audio editing and playback for OpenShot")
4310 (description "OpenShot Audio Library (libopenshot-audio) allows
4311high-quality editing and playback of audio, and is based on the JUCE
4312library.")
4313 (license license:lgpl3+)))
ea3510f8
RH
4314
4315(define-public faudio
4316 (package
4317 (name "faudio")
c44db46f 4318 (version "19.11")
ea3510f8
RH
4319 (source
4320 (origin
4321 (method git-fetch)
4322 (uri (git-reference
b0e7b699 4323 (url "https://github.com/FNA-XNA/FAudio")
ea3510f8 4324 (commit version)))
543f7ad1 4325 (file-name (git-file-name name version))
ea3510f8 4326 (sha256
c44db46f 4327 (base32 "0ckpr6ffz8ssfh1y850dhip5s5jv0j6n90qz5yx1v9d6gpwf08rp"))))
ea3510f8
RH
4328 (arguments
4329 '(#:tests? #f ; No tests.
4330 #:configure-flags '("-DFFMPEG=ON")))
4331 (build-system cmake-build-system)
4332 (native-inputs `(("pkg-config" ,pkg-config)))
4333 (inputs `(("ffmpeg" ,ffmpeg)
4334 ("sdl2" ,sdl2)))
4335 (home-page "https://github.com/FNA-XNA/FAudio")
4336 (synopsis "XAudio reimplementation")
4337 (description "FAudio is an XAudio reimplementation that focuses solely on
4338developing fully accurate DirectX Audio runtime libraries.")
4339 (license license:zlib)))
e13714b6
AI
4340
4341(define-public gnaural
4342 (package
4343 (name "gnaural")
4344 (version "20110606")
4345 (source
4346 (origin
4347 (method url-fetch)
4348 (uri (string-append "mirror://sourceforge/gnaural/Gnaural/gnaural_"
4349 version ".tar.xz"))
4350 (sha256
4351 (base32
4352 "1gq519c0imsh57zklyi0f8h64l3ai48lh672c834470z8c6kvbfi"))))
4353 (build-system gnu-build-system)
4354 (inputs
4355 `(("alsa-lib" ,alsa-lib)
4356 ("gtk+" ,gtk+-2)
4357 ("libsndfile" ,libsndfile)
4358 ("portaudio" ,portaudio)))
4359 (native-inputs
4360 `(("pkg-config" ,pkg-config)))
4361 (home-page "http://gnaural.sourceforge.net/")
4362 (synopsis "Binaural beat synthesizer")
4363 (description "Gnaural is a programmable auditory binaural beat synthesizer
4364intended to be used for brainwave entrainment. Gnaural supports creation of
4365binaural beat tracks of different frequencies and exporting of tracks into
4366different audio formats. Gnaural can also be linked over the internet with
4367other Gnaural instances, allowing synchronous sessions between many users.")
4368 (license license:gpl2+)))
2f4698d7
MW
4369
4370(define-public darkice
4371 (package
4372 (name "darkice")
c827c52a 4373 (version "1.4")
2f4698d7
MW
4374 (source (origin
4375 (method url-fetch)
c827c52a
LF
4376 (uri (string-append "https://github.com/rafael2k/darkice/releases/"
4377 "download/v" version "/darkice-"
4378 version ".tar.gz"))
2f4698d7 4379 (sha256
c827c52a
LF
4380 (base32
4381 "05yq7lggxygrkd76yiqby3msrgdn082p0qlvmzzv9xbw8hmyra76"))))
2f4698d7
MW
4382 (build-system gnu-build-system)
4383 (native-inputs `(("pkg-config" ,pkg-config)))
4384 (inputs `(("lame" ,lame)
4385 ("libvorbis" ,libvorbis)
4386 ("opus" ,opus)
4387 ("twolame" ,twolame)
4388 ("alsa-lib" ,alsa-lib)
4389 ("pulseaudio" ,pulseaudio)
4390 ("jack" ,jack-1)
4391 ("libsamplerate" ,libsamplerate)))
4392 (arguments
4393 `(#:configure-flags
4394 (list (string-append "--with-lame-prefix="
4395 (assoc-ref %build-inputs "lame")))))
4396 (home-page "http://www.darkice.org/")
4397 (synopsis "Live audio streamer")
4398 (description "DarkIce is a live audio streamer. It takes audio input from
4399a sound card, encodes it into Ogg Vorbis and/or mp3, and sends the audio
4400stream to one or more IceCast and/or ShoutCast servers.")
4401 (license license:gpl3+)))
0f2ce448
AT
4402
4403(define-public libltc
4404 (package
4405 (name "libltc")
4406 (version "1.3.1")
4407 (source
4408 (origin
4409 (method url-fetch)
4410 (uri
4411 (string-append "https://github.com/x42/libltc/releases/download/v"
4412 version "/libltc-" version ".tar.gz"))
4413 (sha256
4414 (base32
4415 "173h9dgmain3nyrwk6q2d7yl4fnh4vacag4s2p01n5b7nyrkxrjh"))))
4416 (build-system gnu-build-system)
4417 (arguments
4418 `(#:parallel-tests? #f)) ;tests fail otherwise
4419 (native-inputs
4420 `(("doxygen" ,doxygen)
4421 ("pkg-config" ,pkg-config)))
4422 (synopsis "Encode or decode Linear/Longitudinal Time Code (LTC) audio")
4423 (description "Libltc is a POSIX-C Library for handling
4424@dfn{Linear/Longitudinal Time Code} (LTC) data.")
4425 (home-page "https://x42.github.io/libltc/")
4426 (license license:lgpl3+)))
74f9a8fb 4427
8aca4f69
AT
4428(define-public ttaenc
4429 (package
4430 (name "ttaenc")
4431 (version "3.4.1")
4432 (source
4433 (origin
4434 (method url-fetch)
4435 (uri (string-append "mirror://sourceforge/tta/"
4436 "tta/ttaenc-src"
4437 "/ttaenc-" version "-src.tgz"))
4438 (sha256
4439 (base32
4440 "1iixpr4b89g9g1hwn8ak8k8iflcww3r5f09a117qdidc2nqcijdj"))))
4441 (build-system gnu-build-system)
4442 (arguments
4443 `(#:tests? #f ;no tests
4444 #:make-flags
4445 (list (string-append "CC=" ,(cc-for-target))
4446 (string-append "INSDIR=" (assoc-ref %outputs "out") "/bin"))
4447 #:phases
4448 (modify-phases %standard-phases
4449 (delete 'configure) ; no configure
4450 (add-before 'install 'make-bindir
4451 (lambda* (#:key outputs #:allow-other-keys)
4452 (let* ((out (assoc-ref outputs "out")))
4453 (mkdir-p (string-append out "/bin"))
4454 #t))))))
4455 (synopsis "TTA lossless audio encoder")
4456 (description
4457 "TTA performs lossless compression on multichannel 8,16 and 24 bits
4458data of the Wav audio files. Being lossless means that no data-
4459quality is lost in the compression - when uncompressed, the data will
4460be identical to the original. The compression ratios of TTA depend on
4461the type of music file being compressed, but the compression size
4462will generally range between 30% - 70% of the original. TTA format
4463supports both of ID3v1/v2 and APEv2 tags.")
4464 (home-page "http://tausoft.org/")
4465 (license license:gpl2+)))
4466
74f9a8fb
AT
4467(define-public redkite
4468 (package
4469 (name "redkite")
47731114 4470 (version "1.0.3")
74f9a8fb
AT
4471 (source
4472 (origin
83ba0e42
MB
4473 (method git-fetch)
4474 (uri (git-reference
4475 (url "https://gitlab.com/geontime/redkite.git")
4476 (commit (string-append "v" version))))
4477 (file-name (git-file-name name version))
74f9a8fb 4478 (sha256
47731114 4479 (base32 "1m2db7c791fi33snkjwnvlxapmf879g5r8azlkx7sr6vp2s0jq2k"))))
74f9a8fb
AT
4480 (build-system cmake-build-system)
4481 (arguments
4482 `(#:tests? #f)) ;no tests included
4483 (inputs
4484 `(("cairo" ,cairo)))
4485 (native-inputs
4486 `(("pkg-config", pkg-config)))
4487 (synopsis "Small GUI toolkit")
4488 (description "Redkite is a small GUI toolkit developed in C++17 and
4489inspired from other well known GUI toolkits such as Qt and GTK. It is
4490minimal on purpose and is intended to be statically linked to applications,
4491therefore satisfying any requirements they may have to be self contained,
4492as is the case with audio plugins.")
4493 (home-page "https://gitlab.com/geontime/redkite")
4494 (license license:gpl3+)))
caa1f6a8
AT
4495
4496(define-public carla
4497 (package
4498 (name "carla")
9d6093cb 4499 (version "2.1.1")
caa1f6a8
AT
4500 (source
4501 (origin
4502 (method git-fetch)
4503 (uri
4504 (git-reference
b0e7b699 4505 (url "https://github.com/falkTX/Carla")
caa1f6a8
AT
4506 (commit (string-append "v" version))))
4507 (file-name (git-file-name name version))
4508 (sha256
4509 (base32
9d6093cb 4510 "0c3y4a6cgi4bv1mg57i3qn5ia6pqjqlaylvkapj6bmpsw71ig22g"))))
caa1f6a8
AT
4511 (build-system gnu-build-system)
4512 (arguments
4513 `(#:tests? #f ; no "check" target
4514 #:make-flags
4515 (list (string-append "PREFIX=" (assoc-ref %outputs "out")))
4516 #:phases
4517 (modify-phases %standard-phases
5424e680 4518 (delete 'configure) ; no configure script
caa1f6a8
AT
4519 (add-before 'build 'set-CC-variable-and-show-features
4520 (lambda _
4521 (setenv "CC" "gcc")
4522 (invoke "make" "features")))
5424e680
TGR
4523 (add-after 'install 'make-carla-executable
4524 (lambda* (#:key outputs #:allow-other-keys)
4525 (let ((out (assoc-ref outputs "out")))
4526 (chmod (string-append out "/share/carla/carla") #o555)
4527 #t)))
1ab58a3d
TGR
4528 (add-after 'install 'wrap-executables
4529 (lambda* (#:key outputs #:allow-other-keys)
4530 (let ((out (assoc-ref outputs "out")))
4531 (wrap-script (string-append out "/bin/carla")
4532 `("PYTHONPATH" ":" prefix (,(getenv "PYTHONPATH"))))
4533 #t))))))
caa1f6a8
AT
4534 (inputs
4535 `(("alsa-lib" ,alsa-lib)
4536 ("ffmpeg" ,ffmpeg)
4537 ("fluidsynth" ,fluidsynth)
4538 ("file" ,file)
4539 ("liblo" ,liblo)
4540 ("libsndfile" ,libsndfile)
281456b4 4541 ("gtk2" ,gtk+-2) ;needed for bridging GTK2 plugins in GTK3 hosts
caa1f6a8
AT
4542 ("gtk+" ,gtk+)
4543 ("python-pyliblo" ,python-pyliblo)
4544 ("python-pyqt" ,python-pyqt)
4545 ("python-rdflib" ,python-rdflib)
4546 ;; python-pyqt shows the following error without python-wrapper:
4547 ;; Error while finding module specification for 'PyQt5.uic.pyuic'
4548 ;; (ModuleNotFoundError: No module named 'PyQt5')
4549 ("python-wrapper" ,python-wrapper)
4550 ("libx11" ,libx11)
4551 ("qtbase" ,qtbase)
1ab58a3d
TGR
4552 ("zlib" ,zlib)
4553
4554 ;; For WRAP-SCRIPT above.
4555 ("guile" ,guile-2.2)))
caa1f6a8
AT
4556 (native-inputs
4557 `(("pkg-config" ,pkg-config)))
4558 (home-page "https://kx.studio/Applications:Carla")
4559 (synopsis "Audio plugin host")
4560 (description "Carla is a modular audio plugin host, with features like
4561transport control, automation of parameters via MIDI CC and remote control
4562over OSC. Carla currently supports LADSPA (including LRDF), DSSI, LV2, VST2,
4563and VST3 plugin formats, plus SF2 and SFZ file support. It uses JACK as the
4564default and preferred audio driver but also supports native drivers like ALSA.")
4565 (license license:gpl2+)))
615a4fbf
CLW
4566
4567(define-public ecasound
4568 (package
4569 (name "ecasound")
ec67d069 4570 (version "2.9.3")
615a4fbf
CLW
4571 (source (origin
4572 (method url-fetch)
694c2976 4573 (uri (string-append "https://nosignal.fi/download/ecasound-"
615a4fbf
CLW
4574 version ".tar.gz"))
4575 (sha256
ec67d069 4576 (base32 "1m7njfjdb7sqf0lhgc4swihgdr4snkg8v02wcly08wb5ar2fr2s6"))))
615a4fbf
CLW
4577 (build-system gnu-build-system)
4578 (native-inputs `(("pkg-config" ,pkg-config)))
ec67d069
TGR
4579 ;; It would be nice to add mikmod to inputs if that gets packaged
4580 ;; eventually.
615a4fbf
CLW
4581 (inputs `(("alsa-lib" ,alsa-lib)
4582 ("jack" ,jack-1)
4583 ("mpg123" ,mpg123)
4584 ("lame" ,lame)
4585 ("vorbis-tools" ,vorbis-tools)
4586 ("faad2" ,faad2)
4587 ("flac" ,flac)
4588 ("timidity++" ,timidity++)
4589 ("libsndfile" ,libsndfile)
4590 ("libsamplerate" ,libsamplerate)
4591 ("ncurses" ,ncurses)
4592 ("ladspa" ,ladspa)
4593 ("lilv" ,lilv)))
694c2976 4594 (home-page "https://nosignal.fi/ecasound/index.php")
615a4fbf
CLW
4595 (synopsis "Multitrack audio processing")
4596 (description "Ecasound is a software package designed for multitrack audio
4597processing. It can be used for simple tasks like audio playback, recording and
4598format conversions, as well as for multitrack effect processing, mixing,
4599recording and signal recycling. Ecasound supports a wide range of audio inputs,
4600outputs and effect algorithms. Effects and audio objects can be combined in
4601various ways, and their parameters can be controlled by operator objects like
4602oscillators and MIDI-CCs. A versatile console mode user-interface is included
4603in the package.")
d83bb797
JW
4604 ;; As an exception to the above, the C, C++ and python implementations
4605 ;; of the Ecasound Control Interface (ECI) are licensed under the LGPL
4606 ;; (see the file 'COPYING.LGPL'). This allows writing ECI applications
615a4fbf
CLW
4607 ;; that are not licensed under GPL.
4608 (license (list license:gpl2 license:lgpl2.1))))
5d703da3
AT
4609
4610(define-public libaudec
4611 (package
4612 (name "libaudec")
fce852c4 4613 (version "0.2.3")
5d703da3
AT
4614 (source
4615 (origin
4616 (method git-fetch)
4617 (uri (git-reference
4618 (url "https://git.zrythm.org/git/libaudec")
4619 (commit (string-append "v" version))))
4620 (file-name (git-file-name name version))
4621 (sha256
4622 (base32
fce852c4 4623 "04hw61db8wscj28qjyiaiafx8xl87njgmvqszxyhs4gmg8xgjip7"))))
5d703da3
AT
4624 (build-system meson-build-system)
4625 (arguments
fce852c4
AT
4626 ;; Compile tests.
4627 `(#:configure-flags `("-Dtests=true")))
5d703da3
AT
4628 (inputs
4629 `(("libsamplerate" ,libsamplerate)
fce852c4 4630 ("libsndfile" ,libsndfile)))
5d703da3
AT
4631 (native-inputs
4632 `(("pkg-config", pkg-config)))
4633 (synopsis "Library for reading and resampling audio files")
4634 (description "libaudec is a wrapper library over ffmpeg, sndfile and
4635libsamplerate for reading and resampling audio files, based on Robin Gareus'
4636@code{audio_decoder} code.")
4637 (home-page "https://git.zrythm.org/cgit/libaudec")
4638 (license license:agpl3+)))
70d9ef51
AT
4639
4640(define-public lv2lint
4641 (package
4642 (name "lv2lint")
b02e52f6 4643 (version "0.8.0")
70d9ef51
AT
4644 (source
4645 (origin
4646 (method git-fetch)
4647 (uri (git-reference
4648 (url "https://git.open-music-kontrollers.ch/lv2/lv2lint")
4649 (commit version)))
4650 (file-name (git-file-name name version))
4651 (sha256
4652 (base32
b02e52f6 4653 "1jrka0hsn4n1clri7zfkcl3c2vi52144lkpjm81l51ff8rqy8ks1"))))
70d9ef51
AT
4654 (build-system meson-build-system)
4655 (arguments
4656 `(#:configure-flags
4657 `("-Delf-tests=true" ; for checking symbol visibility
4658 "-Donline-tests=true"))) ; for checking URI existence
4659 (inputs
4660 `(("curl", curl)
4661 ("libelf", libelf)
4662 ("lilv", lilv)))
4663 (native-inputs
4664 `(("pkg-config", pkg-config)))
4665 (synopsis "LV2 plugin lint tool")
4666 (description "lv2lint is an LV2 lint-like tool that checks whether a
4667given plugin and its UI(s) match up with the provided metadata and adhere
4668to well-known best practices.")
4669 (home-page "https://open-music-kontrollers.ch/lv2/lv2lint/")
4670 (license license:artistic2.0)))
670da398
AT
4671
4672(define-public lv2toweb
4673 (package
4674 (name "lv2toweb")
4675 (version "0.4")
4676 (source
4677 (origin
4678 (method git-fetch)
4679 (uri (git-reference
4680 (url "https://github.com/x42/lv2toweb")
4681 (commit (string-append "v" version))))
4682 (file-name (git-file-name name version))
4683 (sha256
4684 (base32
4685 "007aysqvgkf25za8nkmyd5g9kp1zla460dcpidlj5xg1zc3fcdfi"))))
4686 (build-system gnu-build-system)
4687 (arguments
4688 `(#:tests? #f ; no "check" target
4689 #:make-flags (list "CC=gcc"
4690 (string-append "PREFIX=" (assoc-ref %outputs "out")))
4691 #:phases
4692 (modify-phases %standard-phases
4693 (delete 'configure))))
4694 (inputs
4695 `(("jalv", jalv)
4696 ("lilv", lilv)))
4697 (native-inputs
4698 `(("help2man", help2man)
4699 ("pkg-config", pkg-config)))
4700 (synopsis "Documentation generator for LV2 plugins")
4701 (description
4702 "lv2toweb allows the user to create an xhtml page with information
4703about the given LV2 plugin, provided that the plugin and its UI(s) match up
4704with the provided metadata and adhere to well-known best practices.")
4705 (home-page "https://github.com/x42/lv2toweb")
4706 (license (list license:isc license:gpl2))))
2f4faccc
AT
4707
4708(define-public ztoolkit
4709 (package
4710 (name "ztoolkit")
4711 (version "0.1.1")
4712 (source
4713 (origin
4714 (method git-fetch)
4715 (uri (git-reference
4716 (url "https://git.zrythm.org/git/ztoolkit")
4717 (commit (string-append "v" version))))
4718 (file-name (git-file-name name version))
4719 (sha256
4720 (base32
4721 "07xl3cmdaf7k9mm58m93cn8i1jvgimmiifdw1w7v2jl88nx60pm1"))))
4722 (build-system meson-build-system)
4723 (inputs
4724 `(("cairo" ,cairo)
4725 ("libx11" ,libx11)))
4726 (native-inputs
4727 `(("pkg-config" ,pkg-config)))
4728 (synopsis "GUI toolkit for LV2 plugins")
4729 (description "ZToolkit (Ztk) is a cross-platform GUI toolkit heavily
4730inspired by GTK. It handles events and low level drawing on behalf of
4731the user and provides a high-level API for managing the UI and custom
4732widgets. ZToolkit is written in C and was created to be used for building
4733audio plugin UIs, where the dependencies often need to be kept to a
4734minimum.")
4735 (home-page "https://git.zrythm.org/cgit/ztoolkit/")
4736 (license license:agpl3+)))
360ebe50 4737
d474052b
VM
4738(define-public libinstpatch
4739 (package
4740 (name "libinstpatch")
4741 (version "1.1.5")
4742 (source
4743 (origin
4744 (method git-fetch)
4745 (uri (git-reference
4746 (url "https://github.com/swami/libinstpatch")
4747 (commit (string-append "v" version))))
4748 (file-name (git-file-name name version))
4749 (sha256
4750 (base32 "0psx4hc5yksfd3k2xqsc7c8lbz2d4yybikyddyd9hlkhq979cmjb"))))
4751 (build-system cmake-build-system)
4752 (arguments
4753 `(#:tests? #f)) ;there are no tests
4754 (native-inputs
4755 `(("glib:bin" ,glib "bin")
4756 ("pkg-config" ,pkg-config)))
4757 (inputs
4758 `(("glib" ,glib)
4759 ("libsndfile" ,libsndfile)))
4760 (home-page "http://www.swamiproject.org/")
4761 (synopsis "Instrument file software library")
4762 (description
4763 "libInstPatch is a library for processing digital sample based MIDI
4764instrument \"patch\" files. The types of files libInstPatch supports are used
4765for creating instrument sounds for wavetable synthesis. libInstPatch provides
4766an object framework (based on GObject) to load patch files, which can then be
4767edited, converted, compressed and saved.")
4768 (license license:lgpl2.1)))
4769
360ebe50
AT
4770(define-public ztoolkit-rsvg
4771 (package
4772 (inherit ztoolkit)
4773 (name "ztoolkit-rsvg")
4774 (arguments
4775 `(#:configure-flags `("-Denable_rsvg=true")))
4776 (inputs
4777 `(("librsvg" ,librsvg)
4778 ,@(package-inputs ztoolkit)))
4779 (synopsis "ZToolkit with SVG support")))
7cd2609e
GLV
4780
4781(define-public codec2
4782 (package
4783 (name "codec2")
4784 (version "0.9.2")
4785 (source
4786 (origin
4787 (method git-fetch)
4788 (uri (git-reference
b0e7b699 4789 (url "https://github.com/drowe67/codec2")
7cd2609e
GLV
4790 (commit (string-append "v" version))))
4791 (file-name (git-file-name name version))
4792 (sha256
4793 (base32 "1jpvr7bra8srz8jvnlbmhf8andbaavq5v01qjnp2f61za93rzwba"))))
4794 (build-system cmake-build-system)
4795 (native-inputs
4796 `(("bc" ,bc)
4797 ("octave" ,octave)
4798 ("valgrind" ,valgrind)))
4799 (arguments
4800 `(#:tests? #f ; TODO: Fix tests (paths, graphic toolkit, octave modules).
4801 #:phases
4802 (modify-phases %standard-phases
4803 (add-before 'check 'set-test-environment
4804 (lambda _
4805 (setenv "HOME" "/tmp")
4806 #t)))))
4807 (synopsis "Speech codec")
4808 (description
4809 "Codec 2 is a speech codec designed for communications quality speech
4810between 700 and 3200 bit/s. The main application is low bandwidth HF/VHF
4811digital radio.")
4812 (home-page "https://www.rowetel.com/?page_id=452")
4813 (license license:lgpl2.1)))
17aa4eb4
GL
4814
4815(define-public ableton-link
4816 (package
4817 (name "ableton-link")
4818 (version "3.0.2")
4819 (source (origin
4820 (method git-fetch)
4821 (uri (git-reference
b0e7b699 4822 (url "https://github.com/Ableton/link")
17aa4eb4
GL
4823 (commit (string-append "Link-" version))))
4824 (file-name (git-file-name name version))
4825 (sha256
4826 (base32
4827 "0262vm0v7hmqjhqx5xikh529p3c065p1yld6ymaiz74yq1dnnjir"))
4828 (modules '((guix build utils)))
4829 (patches
4830 (search-patches "ableton-link-system-libraries-debian.patch"))
4831 (snippet
4832 '(begin
4833 ;; Tests assume that CMake's "build" directory is a
4834 ;; sub-directory of the source tree, so we fix it.
4835 (substitute* "ci/run-tests.py"
4836 (("root_dir,") "root_dir, os.pardir,"))
4837 ;; Unbundle dependencies.
4838 (delete-file-recursively "third_party")
4839 (delete-file-recursively "modules")
4840 #t))))
4841 (build-system cmake-build-system)
4842 (native-inputs
4843 `(("catch" ,catch-framework)
4844 ("python" ,python) ;for running tests
4845 ("portaudio" ,portaudio) ;for portaudio examples
4846 ("qtbase" ,qtbase) ;for Qt examples
4847 ("qtdeclarative" ,qtdeclarative)
4848 ("qttools" ,qttools)))
4849 (inputs
4850 `(("jack" ,jack-1) ;for JACK examples
4851 ("qtquickcontrols" ,qtquickcontrols))) ;for Qt examples
4852 (propagated-inputs
4853 ;; This is because include/ableton/platforms/asio/AsioWrapper.hpp
4854 ;; contains '#include <asio.hpp>'.
4855 `(("asio" ,asio)))
4856 (arguments
4857 `(#:configure-flags
4858 '("-DLINK_BUILD_QT_EXAMPLES=ON"
4859 "-DLINK_BUILD_JACK=ON")
4860 #:phases
4861 (modify-phases %standard-phases
4862 (replace 'check
4863 (lambda* (#:key inputs #:allow-other-keys)
4864 (let* ((python (string-append (assoc-ref inputs "python")
4865 "/bin/python3"))
4866 (run-tests (string-append "../ableton-link-"
4867 ,version
4868 "-checkout/ci/run-tests.py")))
4869 (invoke python run-tests "--target" "LinkCoreTest")
4870 (invoke python run-tests "--target" "LinkDiscoveryTest"))))
4871 (add-before 'install 'patch-cmake
4872 (lambda* (#:key inputs #:allow-other-keys)
4873 (let* ((source (string-append "../ableton-link-"
4874 ,version
4875 "-checkout/")))
4876 (substitute* (string-append source
4877 "cmake_include/AsioStandaloneConfig.cmake")
4878 (((string-append "\\$\\{CMAKE_CURRENT_LIST_DIR\\}/\\.\\./"
4879 "modules/asio-standalone/asio/include"))
4880 (string-append (assoc-ref inputs "asio")
4881 "/include")))
4882 (substitute* (string-append source "AbletonLinkConfig.cmake")
4883 (("\\$\\{CMAKE_CURRENT_LIST_DIR\\}/include")
4884 "${CMAKE_CURRENT_LIST_DIR}/../../../include")
4885 (("\\$\\{CMAKE_CURRENT_LIST_DIR\\}/include/ableton/Link\\.hpp")
4886 "${CMAKE_CURRENT_LIST_DIR}/../../../include/ableton/Link.hpp"))
4887 #t)))
4888 (replace 'install
4889 (lambda* (#:key outputs #:allow-other-keys)
4890 (let* ((out (assoc-ref outputs "out"))
4891 (bin (string-append out "/bin"))
4892 (lib-cmake (string-append out "/lib/cmake/ableton-link"))
4893 (source (string-append "../ableton-link-" ,version "-checkout")))
4894 (for-each (lambda (test-file)
4895 (delete-file test-file))
4896 '("bin/LinkDiscoveryTest" "bin/LinkCoreTest"))
4897 (copy-recursively "bin" bin)
4898 (copy-recursively (string-append source "/include/ableton")
4899 (string-append out "/include/ableton"))
4900 (install-file (string-append source "/AbletonLinkConfig.cmake")
4901 lib-cmake)
4902 (install-file (string-append source
4903 "/cmake_include/AsioStandaloneConfig.cmake")
4904 (string-append lib-cmake "/cmake_include"))
4905 #t))))))
4906 (home-page "https://github.com/Ableton/link")
4907 (synopsis "Synchronize musical beat, tempo, and phase across multiple applications")
4908 (description
4909 "Ableton Link is a C++ library that synchronizes musical beat, tempo, and phase
4910across multiple applications running on one or more devices. Applications on devices
4911connected to a local network discover each other automatically and form a musical
4912session in which each participant can perform independently: anyone can start or stop
4913while still staying in time.")
4914 (license license:gpl2+)))