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