gnu: samplv1: Update to 0.9.8.
[jackhill/guix/guix.git] / gnu / packages / music.scm
CommitLineData
1b6826d3 1;;; GNU Guix --- Functional package management for GNU
658212eb 2;;; Copyright © 2014 Eric Bavier <bavier@member.fsf.org>
6ec95a00 3;;; Copyright © 2015, 2016, 2017, 2018, 2019 Ricardo Wurmus <rekado@elephly.net>
e8069d01 4;;; Copyright © 2015 Paul van der Walt <paul@denknerd.org>
aa0edd3f 5;;; Copyright © 2016 Al McElrath <hello@yrns.org>
6ff5e9ba 6;;; Copyright © 2016, 2017 Efraim Flashner <efraim@flashner.co.il>
e42ba3da 7;;; Copyright © 2016, 2018 Leo Famulari <leo@famulari.name>
72385c34 8;;; Copyright © 2016, 2017, 2019 Kei Kebreau <kkebreau@posteo.net>
6d3ef286 9;;; Copyright © 2016 John J. Foerch <jjfoerch@earthlink.net>
23319ed6 10;;; Copyright © 2016 Alex Griffin <a@ajgrf.com>
47956fa0 11;;; Copyright © 2017 ng0 <ng0@n0.is>
a42619e5 12;;; Copyright © 2017 Rodger Fox <thylakoid@openmailbox.org>
8204ec8d 13;;; Copyright © 2017, 2018, 2019 Nicolas Goaziou <mail@nicolasgoaziou.fr>
d09e31bd 14;;; Copyright © 2017, 2018 Pierre Langlois <pierre.langlois@gmx.com>
bc27eb3b 15;;; Copyright © 2017 Arun Isaac <arunisaac@systemreboot.net>
4fa37ce2 16;;; Copyright © 2017, 2018, 2019 Tobias Geerinckx-Rice <me@tobias.gr>
6b445c57 17;;; Copyright © 2018 nee <nee.git@hidamari.blue>
b0dea60c 18;;; Copyright © 2018 Stefan Reichör <stefan@xsteve.at>
4715f92e 19;;; Copyright © 2018 Pierre Neidhardt <mail@ambrevar.xyz>
b0c2c5ab 20;;; Copyright © 2018 Ludovic Courtès <ludo@gnu.org>
e029d90f 21;;; Copyright © 2018 Björn Höfling <bjoern.hoefling@bjoernhoefling.de>
1331a6c0 22;;; Copyright © 2019 Gabriel Hondet <gabrielhondet@gmail.com>
1b6826d3
RW
23;;;
24;;; This file is part of GNU Guix.
25;;;
26;;; GNU Guix is free software; you can redistribute it and/or modify it
27;;; under the terms of the GNU General Public License as published by
28;;; the Free Software Foundation; either version 3 of the License, or (at
29;;; your option) any later version.
30;;;
31;;; GNU Guix is distributed in the hope that it will be useful, but
32;;; WITHOUT ANY WARRANTY; without even the implied warranty of
33;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
34;;; GNU General Public License for more details.
35;;;
36;;; You should have received a copy of the GNU General Public License
37;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
38
39(define-module (gnu packages music)
40 #:use-module (guix utils)
41 #:use-module (guix packages)
42 #:use-module (guix download)
8e80244a 43 #:use-module (guix git-download)
1b6826d3
RW
44 #:use-module ((guix licenses) #:prefix license:)
45 #:use-module (guix build-system gnu)
f467c352 46 #:use-module (guix build-system ant)
8b9ec354 47 #:use-module (guix build-system cmake)
2394afa4 48 #:use-module (guix build-system meson)
b0c2c5ab 49 #:use-module (guix build-system perl)
821664f1 50 #:use-module (guix build-system python)
bc27eb3b 51 #:use-module (guix build-system scons)
58301682 52 #:use-module (guix build-system glib-or-gtk)
8e80244a 53 #:use-module (guix build-system waf)
87d1b7b0 54 #:use-module (guix build-system trivial)
5703380b 55 #:use-module (guix build-system go)
1b6826d3 56 #:use-module (gnu packages)
7f559045 57 #:use-module (gnu packages admin)
ddfddb0c 58 #:use-module (gnu packages algebra)
91595624 59 #:use-module (gnu packages apr)
c267cc15 60 #:use-module (gnu packages audio)
2d0fd07b 61 #:use-module (gnu packages autotools)
b7367762 62 #:use-module (gnu packages backup)
8b9ec354 63 #:use-module (gnu packages base) ;libbdf
7bac8196 64 #:use-module (gnu packages bash)
1b6826d3 65 #:use-module (gnu packages bison)
b7367762 66 #:use-module (gnu packages boost)
e8069d01 67 #:use-module (gnu packages cdrom)
8b9ec354
RW
68 #:use-module (gnu packages code)
69 #:use-module (gnu packages check)
a7a7186c 70 #:use-module (gnu packages cmake)
8b9ec354 71 #:use-module (gnu packages compression)
d20b7384 72 #:use-module (gnu packages crypto)
aa0edd3f 73 #:use-module (gnu packages curl)
13416a10 74 #:use-module (gnu packages cyrus-sasl)
d20b7384 75 #:use-module (gnu packages datastructures)
1b6826d3 76 #:use-module (gnu packages docbook)
99828fa7 77 #:use-module (gnu packages documentation)
91595624 78 #:use-module (gnu packages emacs)
13416a10 79 #:use-module (gnu packages file)
1b6826d3 80 #:use-module (gnu packages flex)
8e80244a 81 #:use-module (gnu packages fltk)
1b6826d3
RW
82 #:use-module (gnu packages fonts)
83 #:use-module (gnu packages fontutils)
3bf429af 84 #:use-module (gnu packages freedesktop)
72385c34 85 #:use-module (gnu packages game-development)
6260d1a8 86 #:use-module (gnu packages gcc)
aa0edd3f 87 #:use-module (gnu packages gnupg)
1b6826d3
RW
88 #:use-module (gnu packages gettext)
89 #:use-module (gnu packages ghostscript)
ec8da0e2 90 #:use-module (gnu packages gl)
8e80244a 91 #:use-module (gnu packages glib)
c267cc15 92 #:use-module (gnu packages gnome)
a9f847ad 93 #:use-module (gnu packages gpodder)
770305f4 94 #:use-module (gnu packages graphics)
d20b7384 95 #:use-module (gnu packages gstreamer)
1b6826d3
RW
96 #:use-module (gnu packages gtk)
97 #:use-module (gnu packages guile)
7f559045 98 #:use-module (gnu packages haskell)
c267cc15 99 #:use-module (gnu packages image)
1b6826d3 100 #:use-module (gnu packages imagemagick)
6260d1a8 101 #:use-module (gnu packages java)
91595624 102 #:use-module (gnu packages libffi)
d20b7384 103 #:use-module (gnu packages libusb)
7bac8196
LF
104 #:use-module (gnu packages linux) ; for alsa-utils
105 #:use-module (gnu packages lirc)
91595624 106 #:use-module (gnu packages llvm)
c267cc15
RW
107 #:use-module (gnu packages man)
108 #:use-module (gnu packages mp3)
3bf429af 109 #:use-module (gnu packages mpd)
e8069d01 110 #:use-module (gnu packages ncurses)
1b6826d3 111 #:use-module (gnu packages netpbm)
91595624 112 #:use-module (gnu packages pcre)
821664f1 113 #:use-module (gnu packages pdf)
1b6826d3 114 #:use-module (gnu packages perl)
b2961dda 115 #:use-module (gnu packages perl-web)
1b6826d3 116 #:use-module (gnu packages pkg-config)
d20b7384 117 #:use-module (gnu packages protobuf)
d231bb35 118 #:use-module (gnu packages pulseaudio) ;libsndfile
1b6826d3 119 #:use-module (gnu packages python)
1b2f753d 120 #:use-module (gnu packages python-web)
44d10b1f 121 #:use-module (gnu packages python-xyz)
8b9ec354 122 #:use-module (gnu packages qt)
d231bb35 123 #:use-module (gnu packages rdf)
c493679f 124 #:use-module (gnu packages readline)
1b6826d3 125 #:use-module (gnu packages rsync)
21d18113 126 #:use-module (gnu packages sdl)
cd0322a3 127 #:use-module (gnu packages sqlite)
2d0fd07b 128 #:use-module (gnu packages tcl)
1b6826d3 129 #:use-module (gnu packages texinfo)
8f9ac901 130 #:use-module (gnu packages tex)
13416a10 131 #:use-module (gnu packages tls)
1ea29aa0 132 #:use-module (gnu packages version-control)
e8069d01 133 #:use-module (gnu packages video)
8b9ec354 134 #:use-module (gnu packages web)
c30a66de 135 #:use-module (gnu packages wxwidgets)
c267cc15 136 #:use-module (gnu packages xml)
ddfddb0c 137 #:use-module (gnu packages xorg)
c267cc15 138 #:use-module (gnu packages xiph)
5703380b
PN
139 #:use-module (gnu packages golang)
140 #:use-module (gnu packages lua)
2d0fd07b 141 #:use-module ((srfi srfi-1) #:select (last)))
1b6826d3 142
c30a66de
RW
143(define-public aria-maestosa
144 (package
145 (name "aria-maestosa")
0a151351 146 (version "1.4.13")
c30a66de
RW
147 (source (origin
148 (method url-fetch)
149 (uri (string-append "mirror://sourceforge/ariamaestosa/ariamaestosa/"
150 version "/AriaSrc-" version ".tar.bz2"))
151 (sha256
152 (base32
0a151351 153 "1cs3z6frx2ch7rm5ammx9p0rxcjrbj1vq14hvcbimpaw39rdsn3d"))))
30812446 154 (build-system scons-build-system)
c30a66de
RW
155 (arguments
156 `(#:tests? #f ;no tests
20e42d1e
DM
157 #:scons-flags
158 (list (string-append "prefix=" (assoc-ref %outputs "out")))
30812446 159 #:scons ,scons-python2
c30a66de 160 #:phases
c30a66de
RW
161 (modify-phases %standard-phases
162 (delete 'configure)
163 (add-after 'unpack 'scons-propagate-environment
164 (lambda _
165 ;; By design, SCons does not, by default, propagate
166 ;; environment variables to subprocesses. See:
167 ;; <http://comments.gmane.org/gmane.linux.distributions.nixos/4969>
168 ;; Here, we modify the SConstruct file to arrange for
169 ;; environment variables to be propagated.
170 (substitute* "SConstruct"
171 (("env = Environment\\(\\)")
172 "env = Environment(ENV=os.environ)")
173 ;; Scons errors out when copying subdirectories from Resources,
174 ;; so we move them instead.
175 (("Copy") "Move")
176 ;; We move the "score" and "Documentation" directories at once,
177 ;; so we have to ignore files contained therein.
178 (("if \".svn\" in file" line)
179 (string-append line
180 " or \"score/\" in file"
181 " or \"Documentation/\" in file")))
182 #t))
30812446 183 (add-after 'install 'fix-directory-permissions
c30a66de
RW
184 (lambda* (#:key outputs #:allow-other-keys)
185 (let ((out (assoc-ref outputs "out")))
30812446
DM
186 (chmod (string-append out "/share/Aria/Documentation") #o555)
187 (chmod (string-append out "/share/Aria/score") #o555)
188 #t))))))
c30a66de
RW
189 (inputs
190 `(("wxwidgets" ,wxwidgets)
191 ("glib" ,glib)
192 ("alsa-lib" ,alsa-lib)))
193 (native-inputs
30812446 194 `(("pkg-config" ,pkg-config)))
c30a66de
RW
195 (home-page "http://ariamaestosa.sourceforge.net/")
196 (synopsis "MIDI sequencer and editor")
197 (description
198 "Aria Maestosa is a MIDI sequencer and editor. It lets you compose, edit
199and play MIDI files with a few clicks in a user-friendly interface offering
200score, keyboard, guitar, drum and controller views.")
201 (license license:gpl3+)))
202
d20b7384
PL
203;; We don't use the latest release because it depends on Qt4. Instead we
204;; download the sources from the tip of the "qt5" branch.
205(define-public clementine
8a6d16b8
PL
206 (let ((commit "4619a4c1ab3b17b13d4b2327ad477912917eaf36")
207 (revision "2"))
d20b7384
PL
208 (package
209 (name "clementine")
8a6d16b8 210 (version (git-version "1.3.1" revision commit))
d20b7384
PL
211 (source (origin
212 (method git-fetch)
213 (uri (git-reference
214 (url "https://github.com/clementine-player/Clementine.git")
215 (commit commit)))
8a6d16b8 216 (file-name (git-file-name name version))
d20b7384
PL
217 (sha256
218 (base32
8a6d16b8 219 "1hximk3q0p8nw8is5w7215xgkb7k4flnfyr0pdz9svfwvcm05w1i"))
d20b7384
PL
220 (modules '((guix build utils)))
221 (snippet
6cbee49d
MW
222 '(begin
223 (for-each
d20b7384
PL
224 (lambda (dir)
225 (delete-file-recursively
6cbee49d 226 (string-append "3rdparty/" dir)))
d20b7384 227 (list
6cbee49d
MW
228 ;; TODO: The following dependencies are still bundled:
229 ;; - "qxt": Appears to be unmaintained upstream.
230 ;; - "qsqlite"
231 ;; - "qtsingleapplication"
232 ;; - "qocoa"
233 ;; - "qtiocompressor"
234 ;; - "gmock": The tests crash when using our googletest
235 ;; package instead of the bundled gmock.
236 "SPMediaKeyTap"
237 "fancytabwidget"
238 "google-breakpad"
239 "libmygpo-qt"
240 "libmygpo-qt5"
241 "libprojectm"
242 "qtwin"
243 "sha2" ;; Replaced by openssl.
244 "taglib"
245 "tinysvcmdns"))
246 #t))
af414f34 247 (patches (search-patches "clementine-use-openssl.patch"
7bcc3405
PL
248 "clementine-remove-crypto++-dependency.patch"
249 "clementine-fix-sqlite.patch"))))
d20b7384
PL
250 (build-system cmake-build-system)
251 (arguments
252 '(#:test-target "clementine_test"
253 #:configure-flags
af414f34
PL
254 (list ;; Requires unpackaged "projectm"
255 "-DENABLE_VISUALISATIONS=OFF"
256 ;; Otherwise it may try to download a non-free library at run-time.
257 ;; TODO In an origin snippet, remove the code that performs the
258 ;; download.
259 "-DHAVE_SPOTIFY_DOWNLOADER=FALSE"
260 "-DUSE_SYSTEM_SHA2=TRUE")
d20b7384
PL
261 #:phases
262 (modify-phases %standard-phases
263 (add-after 'install 'wrap-program
264 (lambda* (#:key inputs outputs #:allow-other-keys)
265 (let ((out (assoc-ref outputs "out"))
266 (gst-plugin-path (getenv "GST_PLUGIN_SYSTEM_PATH")))
267 (wrap-program (string-append out "/bin/clementine")
268 `("GST_PLUGIN_SYSTEM_PATH" ":" prefix (,gst-plugin-path)))
269 #t))))))
270 (native-inputs
271 `(("gettext" ,gettext-minimal)
272 ("pkg-config" ,pkg-config)
273 ("qtlinguist" ,qttools)))
274 (inputs
275 `(("boost" ,boost)
276 ("chromaprint" ,chromaprint)
d20b7384
PL
277 ("fftw" ,fftw)
278 ("glib" ,glib)
279 ("glu" ,glu)
280 ("gstreamer" ,gstreamer)
281 ("gst-plugins-base" ,gst-plugins-base)
8473f802
LF
282 ("gst-plugins-good" ,gst-plugins-good)
283 ("gst-libav" ,gst-libav)
d20b7384
PL
284 ("libcdio" ,libcdio)
285 ("libmygpo-qt" ,libmygpo-qt)
d20b7384
PL
286 ;; TODO: Package libgpod.
287 ("libmtp" ,libmtp)
288 ("libxml2" ,libxml2)
289 ("openssl" ,openssl)
290 ("protobuf" ,protobuf)
291 ("pulseaudio" ,pulseaudio)
292 ("qtbase" ,qtbase)
293 ("qtx11extras" ,qtx11extras)
f09e8abc 294 ("sqlite" ,sqlite-with-column-metadata)
d20b7384
PL
295 ("sparsehash" ,sparsehash)
296 ("taglib" ,taglib)))
88491097 297 (home-page "https://clementine-player.org")
d20b7384
PL
298 (synopsis "Music player and library organizer")
299 (description "Clementine is a multiplatform music player. It is inspired
300by Amarok 1.4, focusing on a fast and easy-to-use interface for searching and
301playing your music.")
302 (license (list
303 ;; clementine and qtiocompressor are under GPLv3.
304 license:gpl3+
305 ;; gmock is under BSD-3.
306 license:bsd-3
307 ;; qxt is under CPL1.0.
308 license:cpl1.0
309 ;; qsqlite and qtsingleapplication are under LGPL2.1+.
310 license:lgpl2.1+
311 ;; qocoa is under MIT and CC by-sa for the icons.
312 license:cc-by-sa3.0)))))
313
e8069d01
PW
314(define-public cmus
315 (package
316 (name "cmus")
317 (version "2.7.1")
318 (source (origin
4e829468
RW
319 (method git-fetch)
320 (uri (git-reference
321 (url "https://github.com/cmus/cmus.git")
322 (commit (string-append "v" version))))
323 (file-name (git-file-name name version))
e8069d01
PW
324 (sha256
325 (base32
4e829468 326 "0xd96py21bl869qlv1353zw7xsgq6v5s8szr0ldr63zj5fgc2ps5"))))
e8069d01
PW
327 (build-system gnu-build-system)
328 (arguments
329 `(#:tests? #f ; cmus does not include tests
330 #:phases
331 (modify-phases %standard-phases
ec618c20
RW
332 (replace 'configure
333 (lambda* (#:key outputs #:allow-other-keys)
334 (let ((out (assoc-ref outputs "out")))
335 ;; It's an idiosyncratic configure script that doesn't
336 ;; understand --prefix=..; it wants prefix=.. instead.
337 (invoke "./configure"
338 (string-append "prefix=" out))
339 #t))))))
e8069d01
PW
340 ;; TODO: cmus optionally supports the following formats, which haven't yet
341 ;; been added to Guix:
342 ;;
343 ;; - Roar, libroar
344 ;;
345 ;; - DISCID_LIBS, apparently different from cd-discid which is included in
346 ;; Guix. See <http://sourceforge.net/projects/discid/>
347 (native-inputs
348 `(("pkg-config" ,pkg-config)))
349 (inputs
350 `(("alsa-lib" ,alsa-lib)
351 ("ao" ,ao)
352 ("ffmpeg" ,ffmpeg)
353 ("flac" ,flac)
354 ("jack" ,jack-1)
355 ("libcddb" ,libcddb)
356 ("libcdio-paranoia" ,libcdio-paranoia)
357 ("libcue" ,libcue)
358 ("libmad" ,libmad)
359 ("libmodplug" ,libmodplug)
360 ("libmpcdec" ,libmpcdec)
361 ("libsamplerate" ,libsamplerate)
362 ("libvorbis" ,libvorbis)
363 ("ncurses" ,ncurses)
364 ("opusfile" ,opusfile)
365 ("pulseaudio" ,pulseaudio)
366 ("wavpack" ,wavpack)))
367 (home-page "https://cmus.github.io/")
368 (synopsis "Small console music player")
369 (description "Cmus is a small and fast console music player. It supports
370many input formats and provides a customisable Vi-style user interface.")
371 (license license:gpl2+)))
372
edd1652e
KK
373(define-public denemo
374 (package
375 (name "denemo")
6ff5e9ba 376 (version "2.1")
edd1652e
KK
377 (source (origin
378 (method url-fetch)
379 (uri (string-append "mirror://gnu/denemo/denemo-"
380 version ".tar.gz"))
381 (sha256
382 (base32
6ff5e9ba 383 "0hggf8c4xcrjcxd5m00r788r7jg7g8ff54w2idfaqpj5j2ix3299"))))
edd1652e
KK
384 (build-system gnu-build-system)
385 (arguments
386 `(#:phases
387 (modify-phases %standard-phases
388 (replace 'check
389 ;; Denemo's documentation says to use this command to run its
390 ;; testsuite.
391 (lambda _
f6181921 392 (invoke "make" "-C" "tests" "check")))
b43ec33b
KK
393 (add-before 'build 'set-lilypond
394 ;; This phase sets the default path for lilypond to its current
395 ;; location in the store.
396 (lambda* (#:key inputs #:allow-other-keys)
397 (let* ((lilypond (string-append (assoc-ref inputs "lilypond")
398 "/bin/lilypond")))
399 (substitute* "src/core/prefops.c"
400 (("g_string_new \\(\"lilypond\"\\);")
401 (string-append "g_string_new (\""
402 lilypond
403 "\");"))))
404 #t))
edd1652e
KK
405 (add-after 'install 'correct-filename
406 ;; "graft-derivation/shallow" from the (guix grafts) module runs in
407 ;; the C locale, expecting file names to be ASCII encoded. This
408 ;; phase renames a filename with a Unicode character in it to meet
409 ;; the aforementioned condition.
410 (lambda* (#:key outputs #:allow-other-keys)
411 (let* ((out (assoc-ref outputs "out")))
412 (chdir (string-append
413 out
414 "/share/denemo/templates/instruments/woodwind"))
415 (rename-file "Clarinet in B♭.denemo"
416 "Clarinet in Bb.denemo"))
417 #t)))))
418 (native-inputs
f6181921 419 `(("glib:bin" ,glib "bin") ; for gtester
edd1652e
KK
420 ("pkg-config" ,pkg-config)))
421 (inputs
422 `(("alsa-lib" ,alsa-lib)
423 ("aubio" ,aubio)
424 ("evince" ,evince)
425 ("fftw" ,fftw)
426 ("fluidsynth" ,fluidsynth)
427 ("glib" ,glib)
428 ("gtk+" ,gtk+)
429 ("gtk-doc" ,gtk-doc)
6bf79532 430 ("gtksourceview" ,gtksourceview-3)
edd1652e
KK
431 ("guile" ,guile-2.0)
432 ("intltool" ,intltool)
433 ("librsvg" ,librsvg)
434 ("libsndfile" ,libsndfile)
435 ("libtool" ,libtool)
436 ("libxml2" ,libxml2)
c695fb76 437 ("lilypond" ,lilypond)
edd1652e
KK
438 ("portaudio" ,portaudio)
439 ("portmidi" ,portmidi)
440 ("rubberband" ,rubberband)))
edd1652e
KK
441 (synopsis "Graphical music notation, front-end to GNU Lilypond")
442 (description
443 "GNU Denemo is a music notation editor that provides a convenient
444interface to the powerful music engraving program Lilypond. Music can be
445typed in using the computer keyboard, played in using a MIDI keyboard, or
446even input via a microphone connected to the sound card. The final product
447is publication-quality music notation that is continuously generated in the
448background while you work.")
449 (home-page "http://www.denemo.org")
450 (license license:gpl3+)))
451
72385c34
KK
452(define-public dumb
453 (package
454 (name "dumb")
455 (version "2.0.3")
456 (source
457 (origin
458 (method git-fetch)
459 (uri (git-reference
460 (url "https://github.com/kode54/dumb.git")
461 (commit version)))
462 (sha256
463 (base32 "1cnq6rb14d4yllr0yi32p9jmcig8avs3f43bvdjrx4r1mpawspi6"))
464 (file-name (git-file-name name version))))
465 (build-system cmake-build-system)
466 (arguments
467 '(#:tests? #f ; no check target
468 #:configure-flags
469 (list "-DBUILD_SHARED_LIBS=ON"
470 "-DBUILD_EXAMPLES=OFF")))
471 (home-page "https://github.com/kode54/dumb")
472 (synopsis "Module audio renderer library")
473 (description
474 "DUMB is a tracker library with support for IT, XM, S3M and MOD files. It
475targets maximum accuracy to the original formats, with low-pass resonant filters
476for the IT files, accurate timing and pitching, and three resampling quality
477settings (aliasing, linear interpolation and cubic interpolation).")
478 ;; The DUMB license is a bit peculiar.
479 ;; Clause 8 states that clauses 4, 5 and 6 are null and void, leaving only
480 ;; the first three clauses for genuine consideration.
481 ;; Clauses 1, 2 and 3 are analogous to clauses 1, 2 and 3 of the zlib
482 ;; license, a known free software license.
483 ;; Therefore, the DUMB license may be considered a free software license.
484 (license (license:fsf-free "file://LICENSE"))))
485
d61dcb1b
KK
486(define-public dumb-allegro4
487 (package
488 (inherit dumb)
489 (name "dumb-allegro4")
490 (arguments
491 (substitute-keyword-arguments (package-arguments dumb)
492 ((#:configure-flags flags)
493 `(cons "-DBUILD_ALLEGRO4=ON" ,flags))))
494 (inputs
495 `(("allegro" ,allegro-4)))))
496
d231bb35
RW
497(define-public hydrogen
498 (package
499 (name "hydrogen")
80808d67 500 (version "1.0.0-beta1")
d231bb35 501 (source (origin
80808d67
RW
502 (method git-fetch)
503 (uri (git-reference
504 (url "https://github.com/hydrogen-music/hydrogen.git")
505 (commit version)))
506 (file-name (string-append name "-" version "-checkout"))
d231bb35
RW
507 (sha256
508 (base32
80808d67 509 "0nv83l70j5bjz2wd6n3a8cq3bmgrvdvg6g2hjhc1g5h6xnbqsh9x"))))
b7367762 510 (build-system cmake-build-system)
d231bb35 511 (arguments
80808d67
RW
512 `(#:test-target "tests"
513 #:phases
514 (modify-phases %standard-phases
515 (add-after 'unpack 'fix-data-directory
516 (lambda* (#:key outputs #:allow-other-keys)
517 (substitute* "CMakeLists.txt"
518 (("/usr/share/pixmaps")
519 (string-append (assoc-ref outputs "out")
520 "/share/pixmaps")))
521 #t)))))
d231bb35 522 (native-inputs
b7367762 523 `(("cppunit" ,cppunit)
d231bb35
RW
524 ("pkg-config" ,pkg-config)))
525 (inputs
b7367762 526 `(("alsa-lib" ,alsa-lib)
d231bb35 527 ("jack" ,jack-1)
b7367762 528 ;; ("ladspa" ,ladspa) ; cannot find during configure
d231bb35 529 ("lash" ,lash)
b7367762
EF
530 ("libarchive" ,libarchive)
531 ("libsndfile" ,libsndfile)
532 ("libtar" ,libtar)
533 ("lrdf" ,lrdf)
80808d67
RW
534 ("qtbase" ,qtbase)
535 ("qtxmlpatterns" ,qtxmlpatterns)
b7367762 536 ("zlib" ,zlib)))
d231bb35
RW
537 (home-page "http://www.hydrogen-music.org")
538 (synopsis "Drum machine")
539 (description
540 "Hydrogen is an advanced drum machine for GNU/Linux. Its main goal is to
541enable professional yet simple and intuitive pattern-based drum programming.")
542 (license license:gpl2+)))
543
58301682
PL
544(define-public easytag
545 (package
546 (name "easytag")
547 (version "2.4.3")
548 (source (origin
549 (method url-fetch)
550 (uri (string-append "mirror://gnome/sources/easytag/2.4/easytag-"
551 version ".tar.xz"))
552 (sha256
553 (base32
554 "1mbxnqrw1fwcgraa1bgik25vdzvf97vma5pzknbwbqq5ly9fwlgw"))))
555 (build-system glib-or-gtk-build-system)
556 (native-inputs
557 `(("desktop-file-utils" ,desktop-file-utils)
558 ("glib" ,glib "bin")
559 ("intltool" ,intltool)
560 ("itstool" ,itstool)
561 ("pkg-config" ,pkg-config)
562 ("xmllint" ,libxml2)))
563 (inputs
564 `(("flac" ,flac)
565 ("gtk+" ,gtk+)
566 ("id3lib" ,id3lib)
567 ("libid3tag" ,libid3tag)
568 ("libvorbis" ,libvorbis)
569 ("opusfile" ,opusfile)
570 ("speex" ,speex)
571 ("taglib" ,taglib)
572 ("wavpack" ,wavpack)
573 ("yelp" ,yelp)))
574 (arguments
575 '(#:phases
576 (modify-phases %standard-phases
577 (add-before 'configure 'configure-libid3tag
578 (lambda* (#:key inputs #:allow-other-keys)
579 ;; libid3tag does not provide a .pc file and EasyTAG's configure
580 ;; script healivy relies on pkg-config. Providing a temporary
581 ;; local .pc file is easier than patching the configure script.
582 (let* ((libid3tag (assoc-ref inputs "libid3tag")))
583 (mkdir-p "pkgconfig")
584 (with-output-to-file
585 "pkgconfig/id3tag.pc"
586 (lambda _
587 (format #t
588 "prefix=~@*~a~@
589 libdir=${prefix}/lib~@
590 includedir=${prefix}/include~@
591 Libs: -L${libdir} -lid3tag -lz~@
592 Cflags: -I${includedir}~%"
593 libid3tag)))
594 (setenv "PKG_CONFIG_PATH"
595 (string-append (getenv "PKG_CONFIG_PATH")
596 ":" (getcwd) "/pkgconfig")))))
597 (add-after 'unpack 'patch-makefile
598 (lambda _
599 (substitute* "Makefile.in"
600 ;; The Makefile generates a test-desktop-file-validate.sh
601 ;; script with /bin/sh hard-coded.
602 (("/bin/sh") (which "sh"))
603 ;; Don't create 'icon-theme.cache'.
604 (("gtk-update-icon-cache") "true")))))))
605 (home-page "https://wiki.gnome.org/Apps/EasyTAG")
606 (synopsis "Simple application for viewing and editing tags in audio files")
607 (description
608 "EasyTAG is an application for viewing and editing tags in audio files.
609It supports MP3, MP2, MP4/AAC, FLAC, Ogg Opus, Ogg Speex, Ogg Vorbis,
610MusePack, Monkey's Audio, and WavPack files.")
611 (license license:gpl2+)))
612
91595624
RW
613(define-public extempore
614 (package
615 (name "extempore")
616 (version "0.7.0")
617 (source (origin
8b0f6917
RW
618 (method git-fetch)
619 (uri (git-reference
620 (url "https://github.com/digego/extempore.git")
621 (commit version)))
91595624
RW
622 (sha256
623 (base32
8b0f6917
RW
624 "12fsp7zkfxb9kykwq46l88kcbbici9arczrrsl4qn87m6vm5349l"))
625 (file-name (string-append name "-" version "-checkout"))))
91595624
RW
626 (build-system cmake-build-system)
627 (arguments
628 `(;; The default target also includes ahead-of-time compilation of the
629 ;; standard libraries. However, during the "install" phase this would
630 ;; happen *again* for unknown reasons. Hence we only build the
631 ;; extempore executable during the build phase.
632 #:make-flags '("extempore")
633 #:configure-flags '("-DJACK=ON"
634 ;; We want to distribute.
635 "-DIN_TREE=OFF"
636 ;; Don't download any dependencies.
637 "-DBUILD_DEPS=OFF")
638 #:modules ((ice-9 match)
639 (guix build cmake-build-system)
640 (guix build utils))
641 #:phases
642 (modify-phases %standard-phases
643 (add-after 'unpack 'patch-directories
644 (lambda* (#:key outputs #:allow-other-keys)
645 ;; Rewrite default path to runtime directory
646 (substitute* "src/Extempore.cpp"
647 (("runtimedir \\+= \"runtime\"")
648 (string-append "runtimedir = \""
649 (assoc-ref outputs "out")
650 "/lib/extempore/runtime\"")))
651 (substitute* "extras/extempore.el"
652 (("\\(runtime-directory \\(concat default-directory \"runtime\"\\)\\)")
653 (string-append "(runtime-directory \""
654 (assoc-ref outputs "out")
655 "/lib/extempore/runtime"
656 "\")")))
657 #t))
658 (add-after 'unpack 'link-with-additional-libs
659 (lambda _
660 ;; The executable must be linked with libffi and zlib.
661 (substitute* "CMakeLists.txt"
662 (("add_dependencies\\(aot_extended extended_deps\\)") "")
663 (("target_link_libraries\\(extempore PRIVATE dl" line)
664 (string-append line " ffi z")))
665 #t))
666 ;; FIXME: AOT compilation of the nanovg bindings fail with the error:
667 ;; "Compiler Error could not bind _nvgLinearGradient"
668 (add-after 'unpack 'disable-nanovg
669 (lambda _
670 (substitute* "CMakeLists.txt"
671 (("aotcompile_lib\\(libs/external/nanovg.xtm.*") ""))
672 #t))
673 ;; FIXME: All examples that are used as tests segfault for some
674 ;; unknown reason.
675 (add-after 'unpack 'disable-broken-tests
676 (lambda _
677 (substitute* "CMakeLists.txt"
678 (("extempore_add_example_as_test\\(.*") ""))
679 #t))
680 (add-after 'unpack 'hardcode-external-lib-paths
681 (lambda* (#:key inputs #:allow-other-keys)
682 (use-modules (ice-9 match))
683 (for-each
684 (match-lambda
685 ((file-name lib pkg-name)
686 (substitute* (string-append "libs/external/" file-name ".xtm")
687 ((lib) (string-append (assoc-ref inputs pkg-name)
688 "/lib/" lib)))))
689 '(("assimp" "libassimp.so" "assimp")
690 ("portmidi" "libportmidi.so" "portmidi")
691 ("sndfile" "libsndfile.so" "libsndfile")
692 ("fft" "libkiss_fft.so" "kiss-fft")
693 ("stb_image" "libstb_image.so" "stb-image")
694 ("nanovg" "libnanovg.so" "nanovg")
695 ("glext" "libGL.so" "mesa")
696 ("glfw3" "libglfw.so" "glfw")
697 ("gl/glcore-directbind" "libGL.so" "mesa")
698 ("gl/glcompat-directbind" "libGL.so" "mesa")))
699 #t))
700 (add-after 'unpack 'use-own-llvm
701 (lambda* (#:key inputs #:allow-other-keys)
702 (setenv "EXT_LLVM_DIR" (assoc-ref inputs "llvm"))
703 ;; Our LLVM builds shared libraries, so Extempore should use
704 ;; those.
705 (substitute* "CMakeLists.txt"
706 (("CMAKE_STATIC_LIBRARY") "CMAKE_SHARED_LIBRARY"))
707 #t))
708 (add-after 'unpack 'fix-aot-compilation
709 (lambda* (#:key outputs #:allow-other-keys)
710 (substitute* "CMakeLists.txt"
711 ;; EXT_SHARE_DIR does not exist before installation, so the
712 ;; working directory should be the source directory instead.
713 (("WORKING_DIRECTORY \\$\\{EXT_SHARE_DIR\\}")
714 "WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}")
715 ;; Extempore needs to be told where the runtime is to be found.
716 ;; While we're at it we disable automatic tuning for a specific
717 ;; CPU to make binary substitution possible.
718 (("COMMAND extempore" prefix)
719 (string-append prefix " --sharedir " (getcwd)
720 " --mcpu=generic --attr=none")))
721 #t)))))
722 (inputs
723 `(("llvm" ,llvm-for-extempore)
724 ("libffi" ,libffi)
725 ("jack" ,jack-1)
726 ("libsndfile" ,libsndfile)
727 ("glfw" ,glfw)
728 ("apr" ,apr)
729 ("stb-image" ,stb-image-for-extempore)
730 ("kiss-fft" ,kiss-fft-for-extempore)
731 ("nanovg" ,nanovg-for-extempore)
732 ("portmidi" ,portmidi-for-extempore)
733 ("assimp" ,assimp)
734 ("alsa-lib" ,alsa-lib)
735 ("portaudio" ,portaudio)
736 ("mesa" ,mesa)
737 ("pcre" ,pcre)
738 ("zlib" ,zlib)))
739 (native-inputs
740 `(("perl" ,perl)
741 ("emacs" ,emacs-no-x)))
39162ee4
RW
742 ;; Extempore refuses to build on architectures other than x86_64
743 (supported-systems '("x86_64-linux"))
95708ed8 744 (home-page "http://digego.github.io/extempore/")
91595624
RW
745 (synopsis "Programming environment for live coding of multimedia")
746 (description
747 "Extempore is a programming language and runtime environment designed
748with live programming in mind. It supports interactive programming in a REPL
749style, compiling and binding code just-in-time. Although Extempore has its
750roots in 'live coding' of audiovisual media art, it is suitable for any task
751domain where dynamic run-time modifiability and good numerical performance are
752required. Extempore also has strong timing and concurrency semantics, which
753are helpful when working in problem spaces where timing is important (such as
754audio and video).")
755 (license license:bsd-2)))
756
8c454dcd
RW
757(define-public klick
758 (package
759 (name "klick")
760 (version "0.12.2")
761 (source (origin
762 (method url-fetch)
763 (uri (string-append "http://das.nasophon.de/download/klick-"
764 version ".tar.gz"))
765 (sha256
766 (base32
767 "0hmcaywnwzjci3pp4xpvbijnnwvibz7gf9xzcdjbdca910y5728j"))))
bc27eb3b 768 (build-system scons-build-system)
8c454dcd 769 (arguments
bc27eb3b 770 `(#:scons-flags (list (string-append "PREFIX=" %output))
ecc604ba 771 #:scons ,scons-python2
f00067db
RW
772 #:tests? #f ; no "check" target
773 #:phases
774 (modify-phases %standard-phases
775 (add-after 'unpack 'replace-removed-scons-syntax
776 (lambda _
777 (substitute* "SConstruct"
778 (("BoolOption") "BoolVariable")
779 (("PathOption") "PathVariable")
780 (("Options") "Variables"))
781 #t)))))
8c454dcd
RW
782 (inputs
783 `(("boost" ,boost)
784 ("jack" ,jack-1)
785 ("libsndfile" ,libsndfile)
786 ("libsamplerate" ,libsamplerate)
787 ("liblo" ,liblo)
788 ("rubberband" ,rubberband)))
789 (native-inputs
bc27eb3b 790 `(("pkg-config" ,pkg-config)))
8c454dcd
RW
791 (home-page "http://das.nasophon.de/klick/")
792 (synopsis "Metronome for JACK")
793 (description
794 "klick is an advanced command-line based metronome for JACK. It allows
795you to define complex tempo maps for entire songs or performances.")
796 (license license:gpl2+)))
797
048bfba1
RW
798(define-public gtklick
799 (package
800 (name "gtklick")
801 (version "0.6.4")
802 (source (origin
803 (method url-fetch)
804 (uri (string-append "http://das.nasophon.de/download/gtklick-"
805 version ".tar.gz"))
806 (sha256
807 (base32
808 "0dq1km6njnzsqdqyf6wzir9g733z0mc9vmxfg2383k3c2a2di6bp"))))
809 (build-system python-build-system)
810 (arguments
811 `(#:tests? #f ; no tests
812 #:python ,python-2
813 #:phases
814 (modify-phases %standard-phases
815 (add-before 'build 'add-sitedirs
816 ;; .pth files are not automatically interpreted unless the
817 ;; directories containing them are added as "sites". The directories
818 ;; are then added to those in the PYTHONPATH. This is required for
819 ;; the operation of pygtk.
820 (lambda _
821 (substitute* "gtklick/gtklick.py"
822 (("import pygtk")
823 "import pygtk, site, sys
824for path in [path for path in sys.path if 'site-packages' in path]: site.addsitedir(path)"))))
825 (add-after 'unpack 'inject-store-path-to-klick
826 (lambda* (#:key inputs #:allow-other-keys)
827 (substitute* "gtklick/klick_backend.py"
828 (("KLICK_PATH = 'klick'")
829 (string-append "KLICK_PATH = '"
830 (assoc-ref inputs "klick")
831 "/bin/klick'")))
832 #t)))))
833 (inputs
834 `(("klick" ,klick)
835 ("python2-pyliblo" ,python2-pyliblo)
836 ("python2-pygtk" ,python2-pygtk)))
837 (native-inputs
b94a6ca0 838 `(("gettext" ,gettext-minimal)))
048bfba1
RW
839 (home-page "http://das.nasophon.de/gtklick/")
840 (synopsis "Simple metronome with an easy-to-use graphical interface")
841 (description
842 "Gtklick is a simple metronome with an easy-to-use graphical user
843interface. It is implemented as a frontend to @code{klick}.")
844 (license license:gpl2+)))
845
a3b10217
KK
846(define-public libgme
847 (package
848 (name "libgme")
21f5f351 849 (version "0.6.2")
a3b10217
KK
850 (source (origin
851 (method url-fetch)
852 (uri (string-append "https://bitbucket.org/mpyne/game-music-emu/"
853 "downloads/game-music-emu-" version
21f5f351 854 ".tar.xz"))
a3b10217
KK
855 (sha256
856 (base32
21f5f351 857 "0hkkmxbaas2sirlb5i4r10mgbbiaapjx8pazifabwba23m3wnijh"))))
a3b10217
KK
858 (build-system cmake-build-system)
859 (arguments
860 '(#:tests? #f)) ; no check target
21f5f351
KK
861 (native-inputs
862 `(;; Use gcc-4.9 to work around an internal compiler error that happens
863 ;; when using gcc-5.5.0. FIXME: Try removing this when the default
864 ;; compiler is no longer gcc-5.5.0.
865 ("gcc" ,gcc-4.9)))
a3b10217
KK
866 (home-page "https://bitbucket.org/mpyne/game-music-emu")
867 (synopsis "Video game music file playback library")
868 (description
869 "Game-music-emu is a collection of video game music file emulators that
870support the following formats and systems:
871@table @code
872@item AY
873ZX Spectrum/Asmtrad CPC
874@item GBS
875Nintendo Game Boy
876@item GYM
877Sega Genesis/Mega Drive
878@item HES
879NEC TurboGrafx-16/PC Engine
880@item KSS
881MSX Home Computer/other Z80 systems (doesn't support FM sound)
882@item NSF/NSFE
883Nintendo NES/Famicom (with VRC 6, Namco 106, and FME-7 sound)
884@item SAP
885Atari systems using POKEY sound chip
886@item SPC
887Super Nintendo/Super Famicom
888@item VGM/VGZ
889Sega Master System/Mark III, Sega Genesis/Mega Drive, BBC Micro
890@end table")
891 (license (list license:lgpl2.1+
892 ;; demo and player directories are under the Expat license
893 license:expat))))
894
1b6826d3
RW
895(define-public lilypond
896 (package
897 (name "lilypond")
85f075a0 898 (version "2.19.80")
1b6826d3
RW
899 (source (origin
900 (method url-fetch)
901 (uri (string-append
902 "http://download.linuxaudio.org/lilypond/sources/v"
903 (version-major+minor version) "/"
904 name "-" version ".tar.gz"))
905 (sha256
906 (base32
85f075a0 907 "0lql4q946gna2pl1g409mmmsvn2qvnq2z5cihrkfhk7plcqdny9n"))))
1b6826d3
RW
908 (build-system gnu-build-system)
909 (arguments
127b04d7 910 `(#:tests? #f ; out-test/collated-files.html fails
1b6826d3 911 #:out-of-source? #t
409be57b 912 #:make-flags '("conf=www") ;to generate images for info manuals
127b04d7 913 #:configure-flags
409be57b
RW
914 (list "CONFIGURATION=www"
915 (string-append "--with-texgyre-dir="
127b04d7
RW
916 (assoc-ref %build-inputs "font-tex-gyre")
917 "/share/fonts/opentype/"))
1b6826d3 918 #:phases
a8bc747a 919 (modify-phases %standard-phases
9cc823f5
RW
920 (add-after 'unpack 'use-texlive-union
921 (lambda _
922 ;; FIXME: fonts are not found and have to be generated in HOME.
923 (setenv "HOME" "/tmp")
924 ;; The test for the "lh" package fails, even though it is among
925 ;; the inputs.
926 (substitute* "configure"
927 (("TEX_FIKPARM=.*") "TEX_FIKPARM=found\n"))
928 #t))
409be57b
RW
929 (add-after 'unpack 'fix-path-references
930 (lambda _
a8bc747a
RW
931 (substitute* "scm/backend-library.scm"
932 (("\\(search-executable '\\(\"gs\"\\)\\)")
409be57b
RW
933 (string-append "\"" (which "gs") "\""))
934 (("\"/bin/sh\"")
935 (string-append "\"" (which "sh") "\"")))
a8bc747a
RW
936 #t))
937 (add-before 'configure 'prepare-configuration
938 (lambda _
939 (substitute* "configure"
7affb2c1
RW
940 (("SHELL=/bin/sh") "SHELL=sh")
941 ;; When checking the fontforge version do not consider the
942 ;; version string that's part of the directory.
31ec5228
EF
943 (("head -n") "tail -n")
944 ;; Also allow for SOURCE_DATE_EPOCH = 0 in fontforge.
945 (("20110222") "19700101"))
409be57b
RW
946 (setenv "out" "www")
947 (setenv "conf" "www")
948 #t))
949 (add-after 'install 'install-info
950 (lambda _
88659738
RW
951 (invoke "make"
952 "-j" (number->string (parallel-job-count))
953 "conf=www" "install-info")
954 #t)))))
1b6826d3
RW
955 (inputs
956 `(("guile" ,guile-1.8)
957 ("font-dejavu" ,font-dejavu)
127b04d7 958 ("font-tex-gyre" ,font-tex-gyre)
1b6826d3
RW
959 ("fontconfig" ,fontconfig)
960 ("freetype" ,freetype)
fb0b9ff1 961 ("ghostscript" ,ghostscript)
1b6826d3
RW
962 ("pango" ,pango)
963 ("python" ,python-2)))
964 (native-inputs
965 `(("bison" ,bison)
966 ("perl" ,perl)
967 ("flex" ,flex)
968 ("fontforge" ,fontforge)
969 ("dblatex" ,dblatex)
b94a6ca0 970 ("gettext" ,gettext-minimal)
1b6826d3
RW
971 ("imagemagick" ,imagemagick)
972 ("netpbm" ,netpbm) ;for pngtopnm
9cc823f5
RW
973 ("texlive" ,(texlive-union (list texlive-metapost
974 texlive-generic-epsf
975 texlive-latex-lh
976 texlive-latex-cyrillic)))
1b6826d3
RW
977 ("texinfo" ,texinfo)
978 ("texi2html" ,texi2html)
979 ("rsync" ,rsync)
980 ("pkg-config" ,pkg-config)
981 ("zip" ,zip)))
982 (home-page "http://www.lilypond.org/")
983 (synopsis "Music typesetting")
984 (description
985 "GNU LilyPond is a music typesetter, which produces high-quality sheet
986music. Music is input in a text file containing control sequences which are
987interpreted by LilyPond to produce the final document. It is extendable with
988Guile.")
55ca5e80
LC
989 (license license:gpl3+)
990
991 ;; On armhf and mips64el, building the documentation sometimes leads to
992 ;; more than an hour of silence, so double the max silent time.
993 (properties `((max-silent-time . 7200)))))
c267cc15 994
8e80244a
RW
995(define-public non-sequencer
996 ;; The latest tagged release is three years old and uses a custom build
1bbe7959 997 ;; system, so we take the last commit.
a6b5e1fb
RW
998 (let ((commit "5ae43bb27c42387052a73e5ffc5d33efb9d946a9")
999 (revision "4"))
8e80244a
RW
1000 (package
1001 (name "non-sequencer")
1bbe7959 1002 (version (string-append "1.9.5-" revision "." (string-take commit 7)))
8e80244a
RW
1003 (source (origin
1004 (method git-fetch)
1005 (uri (git-reference
1006 (url "git://git.tuxfamily.org/gitroot/non/non.git")
1007 (commit commit)))
1008 (sha256
1009 (base32
a6b5e1fb 1010 "1cljkkyi9dxqpqhx8y6l2ja4zjmlya26m26kqxml8gx08vyvddhx"))
8e80244a
RW
1011 (file-name (string-append name "-" version "-checkout"))))
1012 (build-system waf-build-system)
1013 (arguments
1014 `(#:tests? #f ;no "check" target
e591a4d6
RW
1015 #:configure-flags
1016 (list "--project=sequencer"
1017 ;; Disable the use of SSE unless on x86_64.
1018 ,@(if (not (string-prefix? "x86_64" (or (%current-target-system)
1019 (%current-system))))
1020 '("--disable-sse")
1021 '()))
d8c317df
SB
1022 #:phases
1023 (modify-phases %standard-phases
1024 (add-before
1025 'configure 'set-flags
1026 (lambda _
1027 ;; Compile with C++11, required by libsigc++.
1028 (setenv "CXXFLAGS" "-std=c++11")
1029 #t)))
8e80244a
RW
1030 #:python ,python-2))
1031 (inputs
1032 `(("jack" ,jack-1)
1033 ("libsigc++" ,libsigc++)
1034 ("liblo" ,liblo)
1035 ("ntk" ,ntk)))
1036 (native-inputs
1037 `(("pkg-config" ,pkg-config)))
1038 (home-page "http://non.tuxfamily.org/wiki/Non%20Sequencer")
1039 (synopsis "Pattern-based MIDI sequencer")
1040 (description
1041 "The Non Sequencer is a powerful, lightweight, real-time,
1042pattern-based MIDI sequencer. It utilizes the JACK Audio Connection Kit for
1043MIDI I/O and the NTK GUI toolkit for its user interface. Everything in Non
1044Sequencer happens on-line, in real-time. Music can be composed live, while the
1045transport is rolling.")
1046 (license license:gpl2+))))
1047
ded69d6f
RW
1048(define-public non-session-manager
1049 (package (inherit non-sequencer)
1050 (name "non-session-manager")
1051 (arguments
1052 (substitute-keyword-arguments (package-arguments non-sequencer)
1053 ((#:configure-flags flags)
1054 `(cons "--project=session-manager"
1055 (delete "--project=sequencer" ,flags)))))
1056 (inputs
1057 `(("jack" ,jack-1)
1058 ("liblo" ,liblo)
1059 ("ntk" ,ntk)))
1060 (native-inputs
1061 `(("pkg-config" ,pkg-config)))
1062 (home-page "http://non.tuxfamily.org/nsm/")
1063 (synopsis "Audio session management")
1064 (description
1065 "The Non Session Manager is an API and an implementation for audio
1066session management. NSM clients use a well-specified OSC protocol to
1067communicate with the session management daemon.")
1068 (license license:gpl2+)))
1069
46bb58b8
RW
1070(define-public non-mixer
1071 (package (inherit non-sequencer)
1072 (name "non-mixer")
1073 (arguments
1074 (substitute-keyword-arguments (package-arguments non-sequencer)
1075 ((#:configure-flags flags)
1076 `(cons "--project=mixer"
1077 (delete "--project=sequencer" ,flags)))))
1078 (inputs
1079 `(("jack" ,jack-1)
1080 ("liblo" ,liblo)
1081 ("ladspa" ,ladspa)
1082 ("lrdf" ,lrdf)
1083 ("ntk" ,ntk)))
1084 (native-inputs
1085 `(("pkg-config" ,pkg-config)))
1086 (home-page "http://non.tuxfamily.org/wiki/Non%20Mixer")
1087 (synopsis "Modular digital audio mixer")
1088 (description
1089 "The Non Mixer is a powerful, reliable and fast modular digital audio
1090mixer. It utilizes JACK for inter-application audio I/O and the NTK GUI
1091toolkit for a fast and lightweight user interface. Non Mixer can be used
1092alone or in concert with Non Timeline and Non Sequencer to form a complete
1093studio.")
1094 (license license:gpl2+)))
1095
4511e0db
RW
1096(define-public non-timeline
1097 (package (inherit non-sequencer)
1098 (name "non-timeline")
1099 (arguments
1100 (substitute-keyword-arguments (package-arguments non-sequencer)
1101 ((#:configure-flags flags)
1102 `(cons "--project=timeline"
1103 (delete "--project=sequencer" ,flags)))))
1104 (inputs
1105 `(("jack" ,jack-1)
1106 ("liblo" ,liblo)
1107 ("libsndfile" ,libsndfile)
1108 ("ntk" ,ntk)))
1109 (native-inputs
1110 `(("pkg-config" ,pkg-config)))
1111 (home-page "http://non.tuxfamily.org/wiki/Non%20Timeline")
1112 (synopsis "Modular digital audio timeline arranger")
1113 (description
1114 "The Non Timeline is a powerful, reliable and fast modular digital audio
1115timeline arranger. It utilizes JACK for inter-application audio I/O and the
1116NTK GUI toolkit for a fast and lightweight user interface. Non Timeline can
1117be used alone or in concert with Non Mixer and Non Sequencer to form a
1118complete studio.")
1119 (license license:gpl2+)))
1120
c267cc15
RW
1121(define-public solfege
1122 (package
1123 (name "solfege")
1124 (version "3.22.2")
1125 (source (origin
1126 (method url-fetch)
1127 (uri (string-append
1128 "mirror://gnu/solfege/solfege-"
1129 version ".tar.xz"))
1130 (sha256
1131 (base32
1132 "1w25rxdbj907nsx285k9nm480pvy12w3yknfh4n1dfv17cwy072i"))))
1133 (build-system gnu-build-system)
1134 (arguments
1135 `(#:tests? #f ; xmllint attempts to download DTD
1136 #:test-target "test"
1137 #:phases
dc1d3cde
KK
1138 (modify-phases %standard-phases
1139 (add-after 'unpack 'fix-configuration
1140 (lambda* (#:key inputs #:allow-other-keys)
1141 (substitute* "default.config"
20c65aa1 1142 (("/usr/bin/aplay") "aplay")
95e545a4
NG
1143 (("/usr/bin/timidity") "timidity")
1144 (("/usr/bin/mpg123") "mpg123")
1145 (("/usr/bin/ogg123") "ogg123"))
dc1d3cde
KK
1146 #t))
1147 (add-before 'build 'patch-python-shebangs
1148 (lambda _
1149 ;; Two python scripts begin with a Unicode BOM, so patch-shebang
1150 ;; has no effect.
1151 (substitute* '("solfege/parsetree.py"
1152 "solfege/presetup.py")
1153 (("#!/usr/bin/python") (string-append "#!" (which "python"))))
1154 #t))
1155 (add-before 'build 'add-sitedirs
1156 ;; .pth files are not automatically interpreted unless the
1157 ;; directories containing them are added as "sites". The directories
1158 ;; are then added to those in the PYTHONPATH. This is required for
1159 ;; the operation of pygtk and pygobject.
1160 (lambda _
1161 (substitute* "run-solfege.py"
1162 (("import os")
1163 "import os, site
1164for path in [path for path in sys.path if 'site-packages' in path]: site.addsitedir(path)"))
1165 #t))
1166 (add-before 'build 'adjust-config-file-prefix
c267cc15
RW
1167 (lambda* (#:key outputs #:allow-other-keys)
1168 (substitute* "run-solfege.py"
1169 (("prefix = os.path.*$")
dc1d3cde
KK
1170 (string-append "prefix = " (assoc-ref outputs "out"))))
1171 #t))
1172 (add-after 'install 'wrap-program
1173 (lambda* (#:key inputs outputs #:allow-other-keys)
1174 ;; Make sure 'solfege' runs with the correct PYTHONPATH.
1175 (let* ((out (assoc-ref outputs "out"))
1176 (path (getenv "PYTHONPATH")))
1177 (wrap-program (string-append out "/bin/solfege")
1178 `("PYTHONPATH" ":" prefix (,path))))
1179 #t)))))
c267cc15
RW
1180 (inputs
1181 `(("python" ,python-2)
1182 ("pygtk" ,python2-pygtk)
b94a6ca0 1183 ("gettext" ,gettext-minimal)
c267cc15 1184 ("gtk" ,gtk+)
95e545a4 1185 ("lilypond" ,lilypond)))
c267cc15
RW
1186 (native-inputs
1187 `(("pkg-config" ,pkg-config)
1188 ("txt2man" ,txt2man)
1189 ("libxml2" ,libxml2) ; for tests
1190 ("ghostscript" ,ghostscript)
c267cc15
RW
1191 ("texinfo" ,texinfo)))
1192 (home-page "https://www.gnu.org/software/solfege/")
1193 (synopsis "Ear training")
1194 (description
1195 "GNU Solfege is a program for practicing musical ear-training. With it,
1196you can practice your recognition of various musical intervals and chords. It
1197features a statistics overview so you can monitor your progress across several
1198sessions. Solfege is also designed to be extensible so you can easily write
1199your own lessons.")
1200 (license license:gpl3+)))
6260d1a8 1201
8b9ec354
RW
1202(define-public powertabeditor
1203 (package
1204 (name "powertabeditor")
92a1cb92 1205 (version "2.0.0-alpha10")
8b9ec354 1206 (source (origin
1b12b572
RW
1207 (method git-fetch)
1208 (uri (git-reference
1209 (url "https://github.com/powertab/powertabeditor.git")
1210 (commit version)))
1211 (file-name (git-file-name name version))
8b9ec354
RW
1212 (sha256
1213 (base32
1b12b572 1214 "1z4fhdp71ck9synr12rg1p6365xnypd8ih40c5icj4si36khvksk"))
8b9ec354
RW
1215 (modules '((guix build utils)))
1216 (snippet
1217 '(begin
1218 ;; Remove bundled sources for external libraries
1219 (delete-file-recursively "external")
40effef7 1220 ;; Use only system libraries
8b9ec354 1221 (substitute* "CMakeLists.txt"
40effef7
RW
1222 (("include\\( PTE_ThirdParty \\)")
1223 "\
1224include(third_party/Qt)
1225include(third_party/boost)
1226add_library( Catch INTERFACE IMPORTED )
1227add_library( rapidjson INTERFACE IMPORTED )"))
8b9ec354
RW
1228 #t))))
1229 (build-system cmake-build-system)
1230 (arguments
7e11d113 1231 `(#:modules ((guix build cmake-build-system)
8b9ec354
RW
1232 (guix build utils)
1233 (ice-9 match))
1234 #:configure-flags
1235 ;; CMake appears to lose the RUNPATH for some reason, so it has to be
1236 ;; explicitly set with CMAKE_INSTALL_RPATH.
7e11d113 1237 (list "-DCMAKE_BUILD_WITH_INSTALL_RPATH=TRUE"
7e11d113 1238 (string-append "-DCMAKE_INSTALL_RPATH="
8b9ec354
RW
1239 (string-join (map (match-lambda
1240 ((name . directory)
1241 (string-append directory "/lib")))
40effef7
RW
1242 %build-inputs) ";"))
1243 "-DPTE_DATA_DIR=share/powertabeditor")
8b9ec354
RW
1244 #:phases
1245 (modify-phases %standard-phases
40effef7
RW
1246 (replace 'check
1247 (lambda _
b1b82aed
RW
1248 (invoke "bin/pte_tests"
1249 ;; FIXME: these tests fail
1250 "exclude:Actions/EditStaff"
1251 "exclude:Formats/PowerTabOldImport/MergeMultiBarRests"
1252 "exclude:Score/ViewFilter/FilterRule"
1253 "exclude:Score/ViewFilter/ViewFilter"
1254 "exclude:Formats/PowerTabOldImport/Directions")
1255 #t))
04ba7a9d
RW
1256 ;; FIXME: This bug has been fixed upstream, but no release has been
1257 ;; made yet. See https://github.com/powertab/powertabeditor/issues/257
1258 (add-after 'unpack 'fix-boost-bug
1259 (lambda _
1260 (substitute* "source/score/voiceutils.cpp"
1261 (("boost::rational<int> duration\\(4, pos.getDurationType\\(\\)\\);")
1262 "boost::rational<int> duration(4, static_cast<int>(pos.getDurationType()));"))
1263 #t))
1e341fa5
RW
1264 ;; Fix build with Qt 5.11.
1265 (add-after 'unpack 'add-missing-headers
1266 (lambda _
1267 (substitute* (find-files "source/dialogs/" "\\.h$")
1268 (("#include <QDialog>" m)
1269 (string-append m "\n#include <QButtonGroup>")))
1270 (substitute* "source/widgets/mixer/mixeritem.h"
1271 (("#include <QWidget>" m)
1272 (string-append m "\n#include <QStyle>")))
1273 (substitute* "source/widgets/playback/playbackwidget.h"
1274 (("#include <QWidget>" m)
1275 (string-append m "\n#include <QButtonGroup>\n#include <QAction>")))
1276 #t))
40effef7
RW
1277 (add-before 'configure 'remove-third-party-libs
1278 (lambda* (#:key inputs #:allow-other-keys)
1279 ;; Link with required static libraries, because we're not
1280 ;; using the bundled version of withershins.
c3913fac 1281 ;; Also add pthread for fixing a linker error.
40effef7
RW
1282 (substitute* "source/build/CMakeLists.txt"
1283 (("withershins" line)
1284 (string-append line "\n"
1285 (assoc-ref inputs "binutils")
1286 "/lib/libbfd.a\n"
1287 (assoc-ref inputs "libiberty")
1288 "/lib/libiberty.a\n"
1289 "dl\n"
c3913fac 1290 "pthread\n"
40effef7
RW
1291 "z\n")))
1292 #t)))))
8b9ec354
RW
1293 (inputs
1294 `(("boost" ,boost)
1295 ("alsa-lib" ,alsa-lib)
0a0bfd68 1296 ("qtbase" ,qtbase)
8b9ec354 1297 ("withershins" ,withershins)
d6902798 1298 ("libiberty" ,libiberty) ;for withershins
8b9ec354
RW
1299 ("binutils" ,binutils) ;for -lbfd and -liberty (for withershins)
1300 ("timidity" ,timidity++)
1301 ("pugixml" ,pugixml)
1302 ("rtmidi" ,rtmidi)
1303 ("rapidjson" ,rapidjson)
1304 ("zlib" ,zlib)))
1305 (native-inputs
1306 `(("catch" ,catch-framework)
1307 ("pkg-config" ,pkg-config)))
1308 (home-page "http://powertabs.net")
1309 (synopsis "Guitar tablature editor")
1310 (description
1311 "Power Tab Editor 2.0 is the successor to the famous original Power Tab
1312Editor. It is compatible with Power Tab Editor 1.7 and Guitar Pro.")
1313 (license license:gpl3+)))
1314
3d4b1bb9
RW
1315(define-public jalv-select
1316 (package
1317 (name "jalv-select")
fc1ff7fc 1318 (version "1.3")
3d4b1bb9 1319 (source (origin
ca364e7a
RW
1320 (method git-fetch)
1321 (uri (git-reference
1322 (url "https://github.com/brummer10/jalv_select.git")
fc1ff7fc 1323 (commit (string-append "v" version))))
ca364e7a 1324 (file-name (git-file-name name version))
3d4b1bb9
RW
1325 (sha256
1326 (base32
fc1ff7fc 1327 "15yanq1wra0hyh6x72ji7pk562iddg476g3vksj495x91zhnl6vm"))))
3d4b1bb9
RW
1328 (build-system gnu-build-system)
1329 (arguments
1330 `(#:make-flags
1331 (list (string-append "PREFIX=" (assoc-ref %outputs "out")))
1332 #:phases
1333 (modify-phases %standard-phases
1334 (delete 'configure)
1335 (add-after 'unpack 'ignore-PATH
1336 (lambda* (#:key inputs #:allow-other-keys)
1337 (substitute* "jalv.select.cpp"
ad7f6e5f 1338 (("echo \\$PATH.*tr ':'.*xargs ls")
3d4b1bb9 1339 (string-append "ls -1 " (assoc-ref inputs "jalv") "/bin")))
ca364e7a
RW
1340 #t))
1341 (add-before 'reset-gzip-timestamps 'make-manpages-writable
1342 (lambda* (#:key outputs #:allow-other-keys)
1343 (for-each make-file-writable
1344 (find-files (string-append (assoc-ref outputs "out")
1345 "/share/man")
1346 ".*\\.gz$"))
3d4b1bb9
RW
1347 #t)))))
1348 (inputs
1349 `(("lilv" ,lilv)
1350 ("lv2" ,lv2)
1351 ("jalv" ,jalv)
1352 ("gtkmm" ,gtkmm-2)))
1353 (native-inputs
1354 `(("pkg-config" ,pkg-config)))
1355 (home-page "https://github.com/brummer10/jalv_select")
1356 (synopsis "GUI to select LV2 plugins and run them with jalv")
1357 (description
1358 "The jalv.select package provides a graphical user interface allowing
1359users to select LV2 plugins and run them with jalv.")
1360 (license license:public-domain)))
1361
b095e762
RW
1362(define-public synthv1
1363 (package
1364 (name "synthv1")
8c7c7687 1365 (version "0.9.8")
b095e762
RW
1366 (source (origin
1367 (method url-fetch)
1368 (uri
de67e922
LF
1369 (string-append "mirror://sourceforge/synthv1/synthv1/" version
1370 "/synthv1-" version ".tar.gz"))
b095e762
RW
1371 (sha256
1372 (base32
8c7c7687 1373 "15kabmxp38wqvavs5hr1dqasjjf1j977kzqggxfmzyi3y5fan3hj"))))
b095e762 1374 (build-system gnu-build-system)
69008d73 1375 (arguments
8c7c7687 1376 `(#:tests? #f)) ; there are no tests
b095e762
RW
1377 (inputs
1378 `(("jack" ,jack-1)
1379 ("lv2" ,lv2)
1380 ("alsa-lib" ,alsa-lib)
b45aa39b 1381 ("non-session-manager" ,non-session-manager)
b095e762 1382 ("liblo" ,liblo)
e5f2afdb
EF
1383 ("qtbase" ,qtbase)
1384 ("qttools" ,qttools)))
b45aa39b
RW
1385 (native-inputs
1386 `(("pkg-config" ,pkg-config)))
9459216a 1387 (home-page "https://synthv1.sourceforge.io")
b095e762
RW
1388 (synopsis "Polyphonic subtractive synthesizer")
1389 (description
1390 "Synthv1 is an old-school subtractive polyphonic synthesizer with four
1391oscillators and stereo effects.")
1392 (license license:gpl2+)))
2bb00612 1393
cf9af706
RW
1394(define-public drumkv1
1395 (package
1396 (name "drumkv1")
8b78ba2b 1397 (version "0.9.8")
cf9af706
RW
1398 (source (origin
1399 (method url-fetch)
1400 (uri
1401 (string-append "mirror://sourceforge/drumkv1/drumkv1/" version
1402 "/drumkv1-" version ".tar.gz"))
1403 (sha256
1404 (base32
8b78ba2b 1405 "010p8nwnmqgj5mw324psig3hxi1g2gylxrigd6sj6sgcpy3kdm23"))))
cf9af706
RW
1406 (build-system gnu-build-system)
1407 (arguments
8b78ba2b 1408 `(#:tests? #f)) ; there are no tests
cf9af706
RW
1409 (inputs
1410 `(("jack" ,jack-1)
1411 ("lv2" ,lv2)
1412 ("libsndfile" ,libsndfile)
1413 ("alsa-lib" ,alsa-lib)
41e2a731 1414 ("non-session-manager" ,non-session-manager)
cf9af706
RW
1415 ("liblo" ,liblo)
1416 ("qtbase" ,qtbase)))
1417 (native-inputs
1418 `(("pkg-config" ,pkg-config)
1419 ("qttools" ,qttools)))
9459216a 1420 (home-page "https://drumkv1.sourceforge.io")
cf9af706
RW
1421 (synopsis "Drum-kit sampler synthesizer with stereo effects")
1422 (description
1423 "Drumkv1 is an old-school drum-kit sampler synthesizer with stereo
1424effects.")
1425 (license license:gpl2+)))
1426
18675264
RW
1427(define-public samplv1
1428 (package
1429 (name "samplv1")
d32f2aa3 1430 (version "0.9.8")
18675264
RW
1431 (source (origin
1432 (method url-fetch)
1433 (uri
1434 (string-append "mirror://sourceforge/samplv1/samplv1/" version
1435 "/samplv1-" version ".tar.gz"))
1436 (sha256
1437 (base32
d32f2aa3 1438 "138kd9szgn3b97s7crhsyj8pgwb0bn4l9knd4zliqjgj2f1bs9x0"))))
18675264
RW
1439 (build-system gnu-build-system)
1440 (arguments
d32f2aa3 1441 `(#:tests? #f)) ; there are no tests
18675264
RW
1442 (inputs
1443 `(("jack" ,jack-1)
1444 ("lv2" ,lv2)
1445 ("libsndfile" ,libsndfile)
1446 ("alsa-lib" ,alsa-lib)
92b70c6f 1447 ("non-session-manager" ,non-session-manager)
18675264
RW
1448 ("liblo" ,liblo)
1449 ("qtbase" ,qtbase)))
1450 (native-inputs
1451 `(("pkg-config" ,pkg-config)
1452 ("qttools" ,qttools)))
9459216a 1453 (home-page "https://samplv1.sourceforge.io")
18675264
RW
1454 (synopsis "Polyphonic sampler synthesizer with stereo effects")
1455 (description
1456 "Samplv1 is an old-school polyphonic sampler synthesizer with stereo
1457effects.")
1458 (license license:gpl2+)))
1459
2702e12e
RW
1460(define-public padthv1
1461 (package
1462 (name "padthv1")
cda12aa9 1463 (version "0.9.7")
2702e12e
RW
1464 (source (origin
1465 (method url-fetch)
1466 (uri
1467 (string-append "mirror://sourceforge/padthv1/padthv1/" version
1468 "/padthv1-" version ".tar.gz"))
1469 (sha256
1470 (base32
cda12aa9 1471 "1jd4bf6a1ipvg4yhb3xf3maqg68bx97ic9l57djmkirlrkh2a3wp"))))
2702e12e
RW
1472 (build-system gnu-build-system)
1473 (arguments
2c59066f 1474 `(#:tests? #f ; there are no tests
2702e12e
RW
1475 #:configure-flags
1476 '("CXXFLAGS=-std=gnu++11")))
1477 (inputs
1478 `(("jack" ,jack-1)
1479 ("lv2" ,lv2)
1480 ("alsa-lib" ,alsa-lib)
1481 ("non-session-manager" ,non-session-manager)
1482 ("liblo" ,liblo)
1483 ("fftw" ,fftw)
1484 ("qtbase" ,qtbase)))
1485 (native-inputs
1486 `(("pkg-config" ,pkg-config)
1487 ("qttools" ,qttools)))
9459216a 1488 (home-page "https://padthv1.sourceforge.io")
2702e12e
RW
1489 (synopsis "Polyphonic additive synthesizer")
1490 (description
1491 "Padthv1 is an old-school polyphonic additive synthesizer with stereo
1492effects. Padthv1 is based on the PADsynth algorithm by Paul Nasca, as a
1493special variant of additive synthesis.")
1494 (license license:gpl2+)))
1495
2bb00612
RW
1496(define-public amsynth
1497 (package
1498 (name "amsynth")
7e0befd4 1499 (version "1.7.1")
2bb00612
RW
1500 (source
1501 (origin
1502 (method url-fetch)
1503 (uri (string-append "https://github.com/amsynth/amsynth/releases/"
1504 "download/release-" version
1505 "/amsynth-" version ".tar.bz2"))
1506 (sha256
1507 (base32
7e0befd4 1508 "1882pfcmf3rqg3vd4qflzkppcv158d748i603spqjbxqi8z7x7w0"))))
2bb00612
RW
1509 (build-system gnu-build-system)
1510 (arguments
1511 `(#:phases
1512 (modify-phases %standard-phases
1513 (add-before 'configure 'set-flags
1514 (lambda _
1515 ;; Compile with C++11, required by gtkmm.
1516 (setenv "CXXFLAGS" "-std=c++11")
1517 #t)))))
1518 (inputs
1519 `(("alsa-lib" ,alsa-lib)
1520 ("jack" ,jack-1)
1521 ("lv2" ,lv2)
7175f4c2 1522 ("lash" ,lash)
2bb00612
RW
1523 ("libsndfile" ,libsndfile)
1524 ("gtk+" ,gtk+-2)
1525 ("gtkmm" ,gtkmm-2)))
1526 (native-inputs
7e0befd4
RW
1527 `(("pkg-config" ,pkg-config)
1528 ("intltool" ,intltool)))
2bb00612
RW
1529 (home-page "http://amsynth.github.io")
1530 (synopsis "Analog modeling synthesizer")
1531 (description
1532 "amsynth is an easy-to-use software synthesizer with a classic
1533subtractive synthesizer topology. Its features include: dual
1534oscillators (sine, saw, square, noise) with hard sync; 12 and 24 dB/oct
1535resonant filters (low-pass, high-pass, band-pass, notch); mono, poly, legato
1536keyboard modes; dual ADSR envelope generators for filter and amplitude; LFO
1537which can modulate the oscillators, filter, and amplitude; distortion and
1538reverb effects.")
1539 (license license:gpl2+)))
b095e762 1540
ec8da0e2
RW
1541(define-public setbfree
1542 (package
1543 (name "setbfree")
d7caf8b8 1544 (version "0.8.8")
ec8da0e2 1545 (source (origin
e0674840
TGR
1546 (method git-fetch)
1547 (uri (git-reference
1548 (url "https://github.com/pantherb/setBfree")
1549 (commit (string-append "v" version))))
1550 (file-name (git-file-name name version))
ec8da0e2
RW
1551 (sha256
1552 (base32
d7caf8b8 1553 "15dr1nyj69wc9jnjq5z8ril90a3c0mcrii4zjyz0z3h7dhia3382"))))
ec8da0e2
RW
1554 (build-system gnu-build-system)
1555 (arguments
d7caf8b8 1556 `(#:tests? #f ; no "check" target
ec8da0e2
RW
1557 #:make-flags
1558 (list (string-append "PREFIX=" (assoc-ref %outputs "out"))
1559 (string-append "FONTFILE="
1560 (assoc-ref %build-inputs "font-bitstream-vera")
b42d4508
RW
1561 "/share/fonts/truetype/VeraBd.ttf")
1562 ;; Disable unsupported optimization flags on non-x86
1563 ,@(let ((system (or (%current-target-system)
1564 (%current-system))))
1565 (if (or (string-prefix? "x86_64" system)
1566 (string-prefix? "i686" system))
1567 '()
1568 '("OPTIMIZATIONS=-ffast-math -fomit-frame-pointer -O3"))))
ec8da0e2
RW
1569 #:phases
1570 (modify-phases %standard-phases
1571 (add-before 'build 'set-CC-variable
d7caf8b8 1572 (lambda _ (setenv "CC" "gcc") #t))
ec8da0e2
RW
1573 (delete 'configure))))
1574 (inputs
1575 `(("jack" ,jack-1)
1576 ("lv2" ,lv2)
1577 ("zita-convolver" ,zita-convolver)
1578 ("glu" ,glu)
1579 ("ftgl" ,ftgl)
1580 ("font-bitstream-vera" ,font-bitstream-vera)))
1581 (native-inputs
1582 `(("help2man" ,help2man)
1583 ("pkg-config" ,pkg-config)))
1584 (home-page "http://setbfree.org")
1585 (synopsis "Tonewheel organ")
1586 (description
1587 "setBfree is a MIDI-controlled, software synthesizer designed to imitate
1588the sound and properties of the electromechanical organs and sound
1589modification devices that brought world-wide fame to the names and products of
1590Laurens Hammond and Don Leslie.")
1591 (license license:gpl2+)))
1592
770305f4
RW
1593(define-public beast
1594 (package
1595 (name "beast")
1596 (version "0.10.0")
1597 (source (origin
1598 (method url-fetch)
1599 (uri (string-append "https://testbit.eu/pub/dists/beast/beast-"
1600 version ".tar.xz"))
1601 (sha256
1602 (base32
1603 "1jzzmfwssklzw8fvvil04n8csc0zm99fnd9p2xa7c0xchg37lvhn"))))
1604 (build-system gnu-build-system)
844f4f6e
EF
1605 (arguments
1606 '(#:parallel-build? #f)) ; Race conditions cause build failures
770305f4
RW
1607 (inputs
1608 `(("rapicorn" ,rapicorn)
1609 ("guile" ,guile-1.8)
1610 ("python" ,python-2)
770305f4
RW
1611 ("libgnomecanvas" ,libgnomecanvas)
1612 ("libogg" ,libogg)
1613 ("libmad" ,libmad)
1614 ("flac" ,flac)
1615 ("alsa-lib" ,alsa-lib)
1616 ("libvorbis" ,libvorbis)
b94a6ca0 1617 ("gettext" ,gettext-minimal)))
770305f4
RW
1618 (native-inputs
1619 `(("pkg-config" ,pkg-config)
1620 ("glib:bin" ,glib "bin")
f2516de2 1621 ("cython" ,python2-cython)
770305f4
RW
1622 ("perl" ,perl)
1623 ("perl-xml-parser" ,perl-xml-parser)))
1624 (home-page "https://testbit.eu/wiki/Beast_Home")
1625 (synopsis "Music composition and modular synthesis environment")
1626 (description
1627 "Beast is a music composition and modular synthesis application. It
1628supports a wide range of standards in the field, such as MIDI, various audio
1629file formats and LADSPA modules. It allows for multitrack editing, real-time
1630synthesis, 32bit audio rendering, precise timing down to sample granularity,
1631on-demand and partial loading of wave files, on the fly decoding, stereo
1632mixing, FFT scopes, MIDI automation and full scriptability in Scheme.")
1633 (license license:gpl3+)))
1634
96250294
RW
1635(define-public bristol
1636 (package
1637 (name "bristol")
1638 (version "0.60.11")
1639 (source (origin
1640 (method url-fetch)
1641 (uri (string-append "mirror://sourceforge/bristol/bristol/"
1642 (version-major+minor version)
1643 "/bristol-" version ".tar.gz"))
1644 (sha256
1645 (base32
1646 "1fi2m4gmvxdi260821y09lxsimq82yv4k5bbgk3kyc3x1nyhn7vx"))))
1647 (build-system gnu-build-system)
18ef998b
RW
1648 (arguments
1649 `(#:phases
1650 (modify-phases %standard-phases
1651 (add-after 'unpack 'remove-sse-flags
1652 (lambda* (#:key system #:allow-other-keys)
1653 (when (not (or (string-prefix? "x86_64" system)
1654 (string-prefix? "i686" system)))
1655 (substitute* "bristol/Makefile.in"
1656 (("-msse -mfpmath=sse") "")))
73124d34 1657 #t))
bd0c6231
RW
1658 ;; alsa-lib 1.1.x no longer provides iatomic.h. That's okay because
1659 ;; bristol actually doesn't use it.
1660 (add-after 'unpack 'do-not-use-alsa-iatomic
1661 (lambda _
1662 (substitute* "libbristolaudio/audioEngineJack.c"
1663 (("#include <alsa/iatomic.h>") ""))
1664 #t))
73124d34
RW
1665 ;; We know that Bristol has been linked with JACK and we don't have
1666 ;; ldd, so we can just skip this check.
1667 (add-after 'unpack 'do-not-grep-for-jack
1668 (lambda _
1669 (substitute* "bin/startBristol.in"
1670 (("ldd `which bristol` | grep jack") "echo guix"))
18ef998b 1671 #t)))))
96250294
RW
1672 (inputs
1673 `(("alsa-lib" ,alsa-lib)
1674 ("jack" ,jack-1)
1675 ("liblo" ,liblo)
1676 ("libx11" ,libx11)))
1677 (native-inputs
1678 `(("pkg-config" ,pkg-config)))
1679 (home-page "http://bristol.sourceforge.net/")
1680 (synopsis "Synthesizer emulator")
1681 (description
36a4366d 1682 "Bristol is an emulation package for a number of different @code{classic}
96250294
RW
1683synthesizers including additive and subtractive and a few organs. The
1684application consists of the engine, which is called bristol, and its own GUI
1685library called brighton that represents all the emulations. There are
1686currently more than twenty different emulations; each does sound different
1687although the author maintains that the quality and accuracy of each emulation
1688is subjective.")
1689 (license license:gpl3+)))
1690
6260d1a8
RW
1691(define-public tuxguitar
1692 (package
1693 (name "tuxguitar")
a0a7e425 1694 (version "1.5.2")
6260d1a8
RW
1695 (source (origin
1696 (method url-fetch)
1697 (uri (string-append
1698 "mirror://sourceforge/tuxguitar/TuxGuitar/TuxGuitar-"
f467c352 1699 version "/tuxguitar-" version "-src.tar.gz"))
6260d1a8
RW
1700 (sha256
1701 (base32
a0a7e425 1702 "10arfpgm2pw7mn922klklzn05lw5ifqx070shdrar81afmkfbbd9"))))
f467c352 1703 (build-system ant-build-system)
6260d1a8 1704 (arguments
f467c352 1705 `(#:build-target "build"
40f372af 1706 #:jdk ,icedtea-8
a0a7e425 1707 #:tests? #f ; no tests
6260d1a8 1708 #:phases
5f1c9498 1709 (modify-phases %standard-phases
f467c352
RW
1710 (add-after 'unpack 'enter-dir
1711 (lambda _ (chdir "TuxGuitar-lib") #t))
750e54ec 1712 (add-after 'build 'build-libraries
f467c352 1713 (lambda* (#:key inputs outputs #:allow-other-keys)
750e54ec
RW
1714 (let* ((initial-classpath (getenv "CLASSPATH"))
1715 (build-dir (lambda (dir)
1716 (chdir "..")
1717 (setenv "CLASSPATH"
1718 (string-join (cons initial-classpath
1719 (find-files (getcwd) "\\.jar$"))
1720 ":"))
1721 (chdir dir)
1722 (if (file-exists? "build.xml")
1723 ((assoc-ref %standard-phases 'build)
1724 #:build-target "build")
1725 (begin
a0a7e425 1726 ;; Generate default build.xml.
750e54ec
RW
1727 ((@@ (guix build ant-build-system) default-build.xml)
1728 (string-append (string-downcase dir) ".jar")
1729 (string-append (assoc-ref outputs "out")
1730 "/share/java"))
1731 ((assoc-ref %standard-phases 'build)))))))
1732 (map build-dir '("TuxGuitar-editor-utils"
1733 "TuxGuitar-ui-toolkit"
1734 "TuxGuitar-ui-toolkit-swt"
1735 "TuxGuitar-awt-graphics")))))
1736 (add-after 'build-libraries 'build-application
f467c352
RW
1737 (lambda _
1738 (chdir "../TuxGuitar")
1739 ((assoc-ref %standard-phases 'build)
1740 #:build-target "build")))
1741 (replace 'install
1742 (lambda* (#:key inputs outputs #:allow-other-keys)
1743 (let* ((out (assoc-ref outputs "out"))
1744 (bin (string-append out "/bin"))
1745 (share (string-append out "/share"))
1746 (lib (string-append share "/java"))
1747 (swt (assoc-ref inputs "java-swt")))
1748 (mkdir-p bin)
a0a7e425 1749 ;; Install all jars.
f467c352
RW
1750 (for-each (lambda (file)
1751 (install-file file lib))
1752 (find-files ".." "\\.jar$"))
750e54ec 1753
a0a7e425 1754 ;; Install all resources.
750e54ec
RW
1755 (copy-recursively "share" share)
1756
a0a7e425 1757 ;; Create wrapper.
f467c352
RW
1758 (call-with-output-file (string-append bin "/tuxguitar")
1759 (lambda (port)
1760 (let ((classpath (string-join (append (find-files lib "\\.jar$")
1761 (find-files swt "\\.jar$"))
1762 ":")))
1763 (format
1764 port
1765 (string-append "#!/bin/sh\n"
1766 (which "java")
1767 " -cp " classpath
1768 " -Dtuxguitar.home.path=" out
1769 " -Dtuxguitar.share.path=" out "/share"
1770 " -Dswt.library.path=" swt "/lib"
1771 " org.herac.tuxguitar.app.TGMainSingleton"
1772 " \"$1\" \"$2\"")))))
1773 (chmod (string-append bin "/tuxguitar") #o555)
1774 #t))))))
6260d1a8 1775 (inputs
1ad15c16 1776 `(("java-swt" ,java-swt)))
d4eae3f7 1777 (home-page "http://tuxguitar.com.ar/")
6260d1a8
RW
1778 (synopsis "Multitrack tablature editor and player")
1779 (description
1780 "TuxGuitar is a guitar tablature editor with player support through midi.
1781It can display scores and multitrack tabs. TuxGuitar provides various
1782additional features, including autoscrolling while playing, note duration
1783management, bend/slide/vibrato/hammer-on/pull-off effects, support for
1784tuplets, time signature management, tempo management, gp3/gp4/gp5 import and
1785export.")
1786 (license license:lgpl2.1+)))
2d0fd07b
RW
1787
1788(define-public pd
1789 (package
1790 (name "pd")
96808b39 1791 (version "0.49-0")
2d0fd07b
RW
1792 (source (origin
1793 (method url-fetch)
1794 (uri
037bf4f4
RW
1795 (string-append "http://msp.ucsd.edu/Software/pd-"
1796 version ".src.tar.gz"))
2d0fd07b
RW
1797 (sha256
1798 (base32
96808b39 1799 "18rzqbpgnnvyslap7k0ly87aw1bbxkb0rk5agpr423ibs9slxq6j"))))
2d0fd07b
RW
1800 (build-system gnu-build-system)
1801 (arguments
1802 `(#:tests? #f ; no "check" target
96808b39
SB
1803 #:configure-flags
1804 (list
1805 "--enable-jack"
1806 (string-append "--with-wish=" (string-append
1807 (assoc-ref %build-inputs "tk")
1808 "/bin/wish8.6")))
2d0fd07b
RW
1809 #:phases
1810 (modify-phases %standard-phases
96808b39 1811 (add-before 'configure 'fix-with-path
4712cbb0 1812 (lambda _
4712cbb0
RW
1813 (substitute* "tcl/pd-gui.tcl"
1814 (("exec wish ") (string-append "exec " (which "wish8.6") " ")))
9ab90ead 1815 #t)))))
2d0fd07b
RW
1816 (native-inputs
1817 `(("autoconf" ,autoconf)
1818 ("automake" ,automake)
1819 ("libtool" ,libtool)
b94a6ca0 1820 ("gettext" ,gettext-minimal)
2d0fd07b
RW
1821 ("pkg-config" ,pkg-config)))
1822 (inputs
1823 `(("tk" ,tk)
1824 ("alsa-lib" ,alsa-lib)
1825 ("jack" ,jack-1)))
1826 (home-page "http://puredata.info")
1827 (synopsis "Visual programming language for artistic performances")
1828 (description
1829 "Pure Data (aka Pd) is a visual programming language. Pd enables
1830musicians, visual artists, performers, researchers, and developers to create
1831software graphically, without writing lines of code. Pd is used to process
1832and generate sound, video, 2D/3D graphics, and interface sensors, input
1833devices, and MIDI. Pd can easily work over local and remote networks to
1834integrate wearable technology, motor systems, lighting rigs, and other
1835equipment. Pd is suitable for learning basic multimedia processing and visual
1836programming methods as well as for realizing complex systems for large-scale
1837projects.")
1838 (license license:bsd-3)))
821664f1 1839
6826f1e1
SB
1840(define-public libpd
1841 (package
1842 (name "libpd")
1843 (version "0.11.0")
1844 (source (origin
1845 (method git-fetch)
1846 (uri (git-reference
1847 (url "https://github.com/libpd/libpd.git")
1848 (commit version)
1849 (recursive? #t))) ; for the 'pure-data' submodule
1850 (file-name (string-append name "-" version "-checkout"))
1851 (sha256
1852 (base32
1853 "1bcg1d9iyf9n37hwwphmih0c8rd1xcqykil5z1cax6xfs76552nk"))))
1854 (build-system gnu-build-system)
1855 (arguments
1856 '(#:tests? #f ; no tests
1857 #:make-flags '("CC=gcc")
1858 #:phases
1859 (modify-phases %standard-phases
1860 (delete 'configure) ; no configure script
1861 (replace 'install
1862 (lambda* (#:key outputs #:allow-other-keys)
1863 (let ((out (assoc-ref outputs "out")))
1864 (invoke "make" "install"
1865 (string-append "prefix=" out)
1866 ;; XXX: Fix the last 2 lines of 'install' target.
1867 "LIBPD_IMPLIB=NO"
1868 "LIBPD_DEF=NO")))))))
1869 (home-page "http://libpd.cc/")
1870 (synopsis "Pure Data as an embeddable audio synthesis library")
1871 (description
1872 "Libpd provides Pure Data as an embeddable audio synthesis library. Its
1873main purpose is to liberate raw audio rendering from audio and MIDI drivers.")
1874 (license license:bsd-3)))
1875
aacb52fb
RW
1876(define-public portmidi
1877 (package
1878 (name "portmidi")
1879 (version "217")
1880 (source (origin
1881 (method url-fetch)
1882 (uri (string-append "mirror://sourceforge/portmedia/portmidi/"
1883 version "/portmidi-src-" version ".zip"))
1884 (sha256
1885 (base32
1886 "03rfsk7z6rdahq2ihy5k13qjzgx757f75yqka88v3gc0pn9ais88"))
1887 (patches (list (search-patch "portmidi-modular-build.patch")))))
1888 (build-system cmake-build-system)
1889 (arguments
3def739d
TGR
1890 `(#:tests? #f ; tests cannot be linked
1891 #:build-type "Release" ; needed to have PMALSA set
aacb52fb
RW
1892 #:configure-flags
1893 (list "-DPORTMIDI_ENABLE_JAVA=Off"
a374d9c9
NG
1894 "-DPORTMIDI_ENABLE_TEST=Off") ; tests fail linking
1895 #:phases
1896 (modify-phases %standard-phases
1897 ;; Some packages, e.g., MuseScore, expect "libporttime.so" instead of
1898 ;; "libportmidi.so". Distributions get away with it by creating an
1899 ;; appropriate symlink.
1900 (add-after 'install 'add-porttime
1901 (lambda* (#:key outputs #:allow-other-keys)
1902 (let* ((out (assoc-ref outputs "out"))
1903 (lib (string-append out "/lib")))
1904 (with-directory-excursion lib
1905 (symlink "libportmidi.so" "libporttime.so")))
1906 #t)))))
aacb52fb
RW
1907 (inputs
1908 `(("alsa-lib" ,alsa-lib)))
1909 (native-inputs
1910 `(("unzip" ,unzip)))
1911 (home-page "http://portmedia.sourceforge.net/portmidi/")
1912 (synopsis "Library for MIDI I/O")
1913 (description
1914 "PortMidi is a library supporting real-time input and output of MIDI data
1915using a system-independent interface.")
1916 (license license:expat)))
f65d59fc 1917
38098bf7
RW
1918(define-public portmidi-for-extempore
1919 (package (inherit portmidi)
1920 (name "portmidi-for-extempore")
1921 (version "217")
1922 (source (origin
57906fad
RW
1923 (method git-fetch)
1924 (uri (git-reference
1925 (url "https://github.com/extemporelang/portmidi.git")
1926 (commit version)))
1927 (file-name (git-file-name name version))
38098bf7
RW
1928 (sha256
1929 (base32
57906fad 1930 "1inriyrjf7xx2b7r54x0vmf9ngyqgr7g5060c22bwkbsgg53apzv"))))
38098bf7
RW
1931 (build-system cmake-build-system)
1932 (arguments `(#:tests? #f)) ; no tests
1933 (native-inputs '())
39162ee4
RW
1934 ;; Extempore refuses to build on architectures other than x86_64
1935 (supported-systems '("x86_64-linux"))
38098bf7
RW
1936 (home-page "https://github.com/extemporelang/portmidi/")))
1937
f65d59fc
RW
1938(define-public python-pyportmidi
1939 (package
1940 (name "python-pyportmidi")
1941 (version (package-version portmidi))
1942 (source (package-source portmidi))
1943 (build-system python-build-system)
1944 (arguments
1945 `(#:tests? #f ; no tests included
1946 #:phases
1947 (modify-phases %standard-phases
1948 (add-after 'unpack 'enter-dir
1949 (lambda _ (chdir "pm_python") #t))
1950 (add-after 'enter-dir 'fix-setup.py
1951 (lambda _
1952 (substitute* "setup.py"
1953 ;; Use Python 3 syntax
1954 (("print (\".*\")" _ text)
1955 (string-append "print(" text ")\n"))
1956 ;; TODO.txt and CHANGES.txt don't exist
1957 (("CHANGES =.*") "CHANGES = \"\"\n")
1958 (("TODO =.*") "TODO = \"\"\n"))
1959 #t)))))
1960 (inputs
1961 `(("portmidi" ,portmidi)
f2516de2 1962 ("alsa-lib" ,alsa-lib)))
f65d59fc 1963 (native-inputs
f2516de2
HG
1964 `(("python-cython" ,python-cython)
1965 ("unzip" ,unzip)))
f65d59fc
RW
1966 (home-page "http://portmedia.sourceforge.net/portmidi/")
1967 (synopsis "Python bindings to PortMidi")
1968 (description
1969 "This package provides Python bindings to the PortMidi library.")
1970 (license license:expat)))
aacb52fb 1971
821664f1
RW
1972(define-public frescobaldi
1973 (package
1974 (name "frescobaldi")
e40335b2 1975 (version "3.0.0")
821664f1
RW
1976 (source (origin
1977 (method url-fetch)
1978 (uri (string-append
1979 "https://github.com/wbsoft/frescobaldi/releases/download/v"
1980 version "/frescobaldi-" version ".tar.gz"))
1981 (sha256
1982 (base32
e40335b2 1983 "15cqhbjbjikr7ljgiq56bz2gxrr38j8p0f78p2vhyzydaviy9a2z"))))
821664f1 1984 (build-system python-build-system)
a19a6d3a 1985 (arguments `(#:tests? #f)) ; no tests included
821664f1
RW
1986 (inputs
1987 `(("lilypond" ,lilypond)
6855b347 1988 ("portmidi" ,portmidi)
e40335b2 1989 ("python-pyqt" ,python-pyqt)
821664f1 1990 ("python-ly" ,python-ly)
6855b347 1991 ("python-pyportmidi" ,python-pyportmidi)
821664f1 1992 ("poppler" ,poppler)
e40335b2 1993 ("python-poppler-qt5" ,python-poppler-qt5)
821664f1
RW
1994 ("python-sip" ,python-sip)))
1995 (home-page "http://www.frescobaldi.org/")
1996 (synopsis "LilyPond sheet music text editor")
1997 (description
1998 "Frescobaldi is a LilyPond sheet music text editor with syntax
1999highlighting and automatic completion. Among other things, it can render
2000scores next to the source, can capture input from MIDI or read MusicXML and
2001ABC files, has a MIDI player for proof-listening, and includes a documentation
2002browser.")
2003 (license license:gpl2+)))
ddfddb0c 2004
bf76d780
RW
2005(define-public drumstick
2006 (package
2007 (name "drumstick")
d7495560 2008 (version "1.1.2")
bf76d780
RW
2009 (source (origin
2010 (method url-fetch)
2011 (uri (string-append "mirror://sourceforge/drumstick/"
2012 version "/drumstick-" version ".tar.bz2"))
2013 (sha256
2014 (base32
d7495560 2015 "0kljqyqj7s1i2z52i24x7ail1bywn6dcxxfbad5c59drm8wv94bp"))))
bf76d780
RW
2016 (build-system cmake-build-system)
2017 (arguments
7adaf5b5 2018 `(#:tests? #f ; no test target
bf76d780
RW
2019 #:configure-flags '("-DLIB_SUFFIX=")
2020 #:phases
2021 (modify-phases %standard-phases
2022 (add-before 'configure 'fix-docbook
2023 (lambda* (#:key inputs #:allow-other-keys)
2024 (substitute* "cmake_admin/CreateManpages.cmake"
2025 (("http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl")
2026 (string-append (assoc-ref inputs "docbook-xsl")
2027 "/xml/xsl/docbook-xsl-"
2028 ,(package-version docbook-xsl)
2029 "/manpages/docbook.xsl")))
2030 #t)))))
2031 (inputs
ca1cab82
EF
2032 `(("qtbase" ,qtbase)
2033 ("qtsvg" ,qtsvg)
7adaf5b5 2034 ("alsa-lib" ,alsa-lib)))
bf76d780
RW
2035 (native-inputs
2036 `(("pkg-config" ,pkg-config)
7adaf5b5 2037 ("libxslt" ,libxslt) ; for xsltproc
bf76d780
RW
2038 ("docbook-xsl" ,docbook-xsl)
2039 ("doxygen" ,doxygen)))
2040 (home-page "http://drumstick.sourceforge.net/")
2041 (synopsis "C++ MIDI library")
2042 (description
2043 "Drumstick is a set of MIDI libraries using C++/Qt5 idioms and style. It
2044includes a C++ wrapper around the ALSA library sequencer interface. A
2045complementary library provides classes for processing SMF (Standard MIDI
2046files: .MID/.KAR), Cakewalk (.WRK), and Overture (.OVE) file formats. A
2047multiplatform realtime MIDI I/O library is also provided with various output
2048backends, including ALSA, OSS, Network and FluidSynth.")
2049 (license license:gpl2+)))
2050
ddfddb0c
RW
2051(define-public zynaddsubfx
2052 (package
2053 (name "zynaddsubfx")
5f88d81f 2054 (version "3.0.5")
ddfddb0c
RW
2055 (source (origin
2056 (method url-fetch)
2057 (uri (string-append
2058 "mirror://sourceforge/zynaddsubfx/zynaddsubfx/"
138e7697 2059 version "/zynaddsubfx-" version ".tar.bz2"))
ddfddb0c
RW
2060 (sha256
2061 (base32
5f88d81f 2062 "0qwzg14h043rmyf9jqdylxhyfy4sl0vsr0gjql51wjhid0i34ivl"))))
ddfddb0c 2063 (build-system cmake-build-system)
00dfc97c
RW
2064 (arguments
2065 `(#:phases
2066 (modify-phases %standard-phases
2067 ;; Move SSE compiler optimization flags from generic target to
2068 ;; athlon64 and core2 targets, because otherwise the build would fail
2069 ;; on non-Intel machines.
2070 (add-after 'unpack 'remove-sse-flags-from-generic-target
2071 (lambda _
2072 (substitute* "src/CMakeLists.txt"
2073 (("-msse -msse2 -mfpmath=sse") "")
2074 (("-march=(athlon64|core2)" flag)
2075 (string-append flag " -msse -msse2 -mfpmath=sse")))
2076 #t)))))
ddfddb0c
RW
2077 (inputs
2078 `(("liblo" ,liblo)
2079 ("ntk" ,ntk)
1ea7969f 2080 ("mesa" ,mesa)
ddfddb0c
RW
2081 ("alsa-lib" ,alsa-lib)
2082 ("jack" ,jack-1)
2083 ("fftw" ,fftw)
2084 ("minixml" ,minixml)
2085 ("libxpm" ,libxpm)
2086 ("zlib" ,zlib)))
2087 (native-inputs
2088 `(("pkg-config" ,pkg-config)))
2089 (home-page "http://zynaddsubfx.sf.net/")
2090 (synopsis "Software synthesizer")
2091 (description
2092 "ZynAddSubFX is a feature heavy realtime software synthesizer. It offers
2093three synthesizer engines, multitimbral and polyphonic synths, microtonal
2094capabilities, custom envelopes, effects, etc.")
2095 (license license:gpl2)))
c493679f
RW
2096
2097(define-public yoshimi
2098 (package
2099 (name "yoshimi")
d935f69b 2100 (version "1.5.10.2")
c493679f
RW
2101 (source (origin
2102 (method url-fetch)
2103 (uri (string-append "mirror://sourceforge/yoshimi/"
2104 (version-major+minor version)
2105 "/yoshimi-" version ".tar.bz2"))
2106 (sha256
2107 (base32
d935f69b 2108 "1rr99qkq80s8l2iv3x4ccxan07m15dvmd5s9b10386bfjbwbya01"))))
c493679f
RW
2109 (build-system cmake-build-system)
2110 (arguments
2111 `(#:tests? #f ; there are no tests
2112 #:configure-flags
2113 (list (string-append "-DCMAKE_INSTALL_DATAROOTDIR="
2114 (assoc-ref %outputs "out") "/share"))
2115 #:phases
2116 (modify-phases %standard-phases
2117 (add-before 'configure 'enter-dir
2118 (lambda _ (chdir "src") #t))
2119 ;; Move SSE compiler optimization flags from generic target to
2120 ;; athlon64 and core2 targets, because otherwise the build would fail
2121 ;; on non-Intel machines.
2122 (add-after 'unpack 'remove-sse-flags-from-generic-target
2123 (lambda _
2124 (substitute* "src/CMakeLists.txt"
2125 (("-msse -msse2 -mfpmath=sse") "")
2126 (("-march=(athlon64|core2)" flag)
2127 (string-append flag " -msse -msse2 -mfpmath=sse")))
5edc8682 2128 #t)))))
c493679f
RW
2129 (inputs
2130 `(("boost" ,boost)
2131 ("fftwf" ,fftwf)
2132 ("alsa-lib" ,alsa-lib)
2133 ("jack" ,jack-1)
2134 ("fontconfig" ,fontconfig)
2135 ("minixml" ,minixml)
2136 ("mesa" ,mesa)
2137 ("fltk" ,fltk)
2138 ("lv2" ,lv2)
2139 ("readline" ,readline)
2140 ("ncurses" ,ncurses)
2141 ("cairo" ,cairo)
2142 ("zlib" ,zlib)))
2143 (native-inputs
2144 `(("pkg-config" ,pkg-config)))
2145 (home-page "http://yoshimi.sourceforge.net/")
2146 (synopsis "Multi-paradigm software synthesizer")
2147 (description
edfa2eee 2148 "Yoshimi is a fork of ZynAddSubFX, a feature-heavy real-time software
c493679f
RW
2149synthesizer. It offers three synthesizer engines, multitimbral and polyphonic
2150synths, microtonal capabilities, custom envelopes, effects, etc. Yoshimi
2151improves on support for JACK features, such as JACK MIDI.")
2152 (license license:gpl2)))
658212eb 2153
e87cb754
RW
2154(define-public libgig
2155 (package
2156 (name "libgig")
38146797 2157 (version "4.1.0")
e87cb754
RW
2158 (source (origin
2159 (method url-fetch)
2160 (uri (string-append "http://download.linuxsampler.org/packages/"
2161 "libgig-" version ".tar.bz2"))
2162 (sha256
2163 (base32
38146797 2164 "02xx6bqxzgkvrawwnzrnxx1ypk244q4kpwfd58266f9ji8kq18h6"))))
e87cb754
RW
2165 (build-system gnu-build-system)
2166 (inputs
2167 `(("libuuid" ,util-linux)
2168 ("libsndfile" ,libsndfile)))
2169 (native-inputs
2170 `(("pkg-config" ,pkg-config)))
2171 (home-page "http://linuxsampler.org/libgig/")
2172 (synopsis "C++ library for working with Gigasampler (.gig) files")
2173 (description
2174 "Libgig is a C++ library for loading, modifying existing and creating new
2175Gigasampler (.gig) files and DLS (Downloadable Sounds) Level 1/2 files, KORG
2176sample based instruments (.KSF and .KMP files), SoundFont v2 (.sf2) files and
2177AKAI sampler data. The package includes a couple of command line tools based
2178on the library.")
2179 ;; The library and tools are released under the GPL, except the AKAI
2180 ;; classes which are released under the LGPL.
2181 (license (list license:gpl2+ license:lgpl2.1+))))
2182
a9f55bf2
RW
2183(define-public jack-keyboard
2184 (package
2185 (name "jack-keyboard")
2186 (version "2.5")
2187 (source
2188 (origin
2189 (method url-fetch)
2190 (uri (string-append "mirror://sourceforge/jack-keyboard/jack-keyboard/"
2191 version "/jack-keyboard-" version ".tar.gz"))
2192 (sha256
2193 (base32
2194 "0mzmg8aavybcfdlq2yd9d0vscqd6is5p6jzrgfpfm5j3xdcvh2s3"))))
2195 (build-system gnu-build-system)
2196 (inputs
2197 `(("jack" ,jack-1)
2198 ("lash" ,lash)
2199 ("gtk+" ,gtk+-2)))
2200 (native-inputs
2201 `(("pkg-config" ,pkg-config)))
2202 (home-page "http://jack-keyboard.sourceforge.net/")
2203 (synopsis "Virtual MIDI keyboard")
2204 (description "Jack-keyboard is a virtual MIDI keyboard, a program that
2205allows you to send JACK MIDI events (i.e. play) using your PC keyboard.")
2206 (license license:bsd-2)))
2207
39b33584
RW
2208(define-public jack-capture
2209 (package
2210 (name "jack-capture")
2211 (version "0.9.73")
2212 (source (origin
2213 (method git-fetch)
2214 (uri (git-reference
2215 (url "https://github.com/kmatheussen/jack_capture.git")
2216 (commit version)))
2217 (file-name (string-append name "-" version "-checkout"))
2218 (sha256
2219 (base32
2220 "0jcqky96q8xgya6wqv1p8pj9fkf2wh7ynl67ah7x5bn3basgfclf"))))
2221 (build-system gnu-build-system)
2222 (arguments
2223 `(#:make-flags
2224 (list (string-append "PREFIX=" (assoc-ref %outputs "out")))
2225 #:tests? #f ; there are none
2226 #:phases
2227 (modify-phases %standard-phases
2228 (delete 'configure))))
2229 (native-inputs
2230 `(("pkg-config" ,pkg-config)
2231 ("which" ,which)))
2232 (inputs
2233 `(("gtk+" ,gtk+-2)
2234 ("jack" ,jack-1)
2235 ("libogg" ,libogg)
2236 ("liblo" ,liblo)
2237 ("lame" ,lame)
2238 ("libsndfile" ,libsndfile)))
2239 (home-page "https://github.com/kmatheussen/jack_capture")
2240 (synopsis "Program for recording sound files with JACK")
2241 (description "This is a program for recording sound files with JACK. It
2242can connect to any JACK port and record the output into a stereo WAV file.")
2243 (license license:gpl2+)))
2244
658212eb
LF
2245(define-public cursynth
2246 (package
2247 (name "cursynth")
2248 (version "1.5")
2249 (source
2250 (origin
2251 (method url-fetch)
2252 (uri (string-append "mirror://gnu/cursynth/cursynth-"
2253 version ".tar.gz"))
2254 (sha256
2255 (base32 "1dhphsya41rv8z6yqcv9l6fwbslsds4zh1y56zizi39nd996d40v"))
fc1adab1 2256 (patches (search-patches "cursynth-wave-rand.patch"))))
658212eb
LF
2257 (build-system gnu-build-system)
2258 (native-inputs `(("pkg-config" ,pkg-config)))
2259 ;; TODO: See https://github.com/iyoko/cursynth/issues/4 which currently
2260 ;; prevents us from using pulseaudio
2261 (inputs `(("ncurses" ,ncurses)
2262 ("alsa" ,alsa-lib)))
6fd52309 2263 (home-page "https://www.gnu.org/software/cursynth/")
658212eb
LF
2264 (synopsis "Polyphonic and MIDI subtractive music synthesizer using curses")
2265 (description "GNU cursynth is a polyphonic synthesizer that runs
2266graphically in the terminal. It is built on a full-featured subtractive
2267synthesis engine. Notes and parameter changes may be entered via MIDI or the
2268computer's keyboard.")
2269 (license license:gpl3+)))
a763ce7d 2270
13edf1b9
RW
2271(define-public aj-snapshot
2272 (package
2273 (name "aj-snapshot")
bc03fe69 2274 (version "0.9.9")
13edf1b9
RW
2275 (source (origin
2276 (method url-fetch)
2277 (uri (string-append "mirror://sourceforge/aj-snapshot/"
2278 "aj-snapshot-" version ".tar.bz2"))
2279 (sha256
2280 (base32
bc03fe69 2281 "0z8wd5yvxdmw1h1rj6km9h01xd4xmp4d86gczlix7hsc7zrf0wil"))))
13edf1b9
RW
2282 (build-system gnu-build-system)
2283 (inputs
2284 `(("minixml" ,minixml)
2285 ("jack" ,jack-1)
2286 ("alsa-lib" ,alsa-lib)))
2287 (native-inputs
2288 `(("pkg-config" ,pkg-config)))
2289 (home-page "http://aj-snapshot.sourceforge.net/")
2290 (synopsis "Snapshot connections between ALSA and JACK clients")
2291 (description "Aj-snapshot is a small program that can be used to make
2292snapshots of the connections made between JACK and/or ALSA clients. Because
2293JACK can provide both audio and MIDI support to programs, aj-snapshot can
2294store both types of connections for JACK. ALSA, on the other hand, only
2295provides routing facilities for MIDI clients. Aj-snapshot is meant to be used
2296from the command line.")
2297 (license license:gpl3+)))
2298
a763ce7d
RW
2299(define-public qtractor
2300 (package
2301 (name "qtractor")
95bf4508 2302 (version "0.9.6")
a763ce7d
RW
2303 (source (origin
2304 (method url-fetch)
2305 (uri (string-append "http://downloads.sourceforge.net/qtractor/"
2306 "qtractor-" version ".tar.gz"))
2307 (sha256
2308 (base32
95bf4508 2309 "06sa4wl8zr0k8dnjiil0gjwnhrkq95h50xv56ih1y8jgyzxchaxp"))))
a763ce7d 2310 (build-system gnu-build-system)
42639cc9 2311 (arguments
d56eee86 2312 `(#:tests? #f)) ; no "check" target
a763ce7d 2313 (inputs
523544d3
RW
2314 `(("qt" ,qtbase)
2315 ("qtx11extras" ,qtx11extras)
a763ce7d
RW
2316 ("alsa-lib" ,alsa-lib)
2317 ("jack" ,jack-1)
2318 ("libsndfile" ,libsndfile)
2319 ("ladspa" ,ladspa)
2320 ("lv2" ,lv2)
2321 ("lilv" ,lilv)
2322 ("suil" ,suil)
2323 ("libsamplerate" ,libsamplerate)
2324 ("libvorbis" ,libvorbis)
2325 ("libmad" ,libmad)
2326 ("rubberband" ,rubberband)
2327 ("liblo" ,liblo)
2328 ("zlib" ,zlib)))
2329 (native-inputs
523544d3
RW
2330 `(("pkg-config" ,pkg-config)
2331 ("qttools" ,qttools)))
8071bbbc 2332 (home-page "http://qtractor.org/")
a763ce7d
RW
2333 (synopsis "Audio/MIDI multi-track sequencer")
2334 (description
2335 "Qtractor is an Audio/MIDI multi-track sequencer application. It uses
2336JACK for audio and ALSA sequencer for MIDI as multimedia infrastructures and
2337follows a traditional multi-track tape recorder control paradigm.")
2338 (license license:gpl2+)))
aa0edd3f 2339
849c3d03 2340(define-public ams-lv2
e029d90f
BH
2341 ;; Version 1.2.1 built with Python 3.7 raises an error in the waf-script.
2342 ;; Therefore, we take two more commmits than 1.2.1 that introduce an updated
2343 ;; waf-script and fix one error.
2344 (let ((commit "377d166db54a787b48979171c5652d2eb4f1bbb5")
2345 (revision "1"))
2346 (package
2347 (name "ams-lv2")
2348 (version (git-version "1.2.1" revision commit))
2349 (source
2350 (origin
2351 (method git-fetch)
2352 (uri (git-reference
2353 (url "https://github.com/blablack/ams-lv2.git")
2354 (commit commit)))
2355 (file-name (git-file-name name version))
2356 (sha256
2357 (base32
2358 "1ndgxcxjxwidg7436k0nb5clxkyi878k1j999sbbd1gk2fm0kcqm"))))
2359 (build-system waf-build-system)
2360 (arguments
2361 `(#:phases
2362 (modify-phases %standard-phases
2363 (add-after 'unpack 'remove-sse-flags
2364 (lambda* (#:key system #:allow-other-keys)
6cbb2c87
BH
2365 (unless (or (string-prefix? "x86_64" system)
2366 (string-prefix? "i686" system))
e029d90f 2367 (substitute* "wscript"
6cbb2c87
BH
2368 (("'-msse', '-mfpmath=sse', ") "")))
2369 #t)))
e029d90f
BH
2370 #:tests? #f)) ; no tests
2371 (inputs
2372 `(("lv2" ,lv2)
2373 ("lvtk" ,lvtk)
2374 ("gtkmm" ,gtkmm-2)
2375 ("gtk" ,gtk+-2)
2376 ("cairo" ,cairo)
2377 ("fftw" ,fftw)))
2378 (native-inputs
2379 `(("pkg-config" ,pkg-config)))
2380 (home-page "https://objectivewave.wordpress.com/ams-lv2/")
2381 (synopsis "Port of Alsa Modular Synth internal modules into LV2")
2382 (description "This set of LV2 plugins is a port of the internal modules
849c3d03
RW
2383found in Alsa Modular Synth. These plugins are used to create modular
2384synthesizers and contain: VCO, VCF, VCA, LFO, slew limiter, envelopes, sample
2385and hold, etc.")
e029d90f 2386 (license license:gpl2))))
849c3d03 2387
aed023ff
RW
2388(define-public gxtuner
2389 (package
2390 (name "gxtuner")
f5e0ff0f 2391 (version "2.4")
aed023ff 2392 (source (origin
bed4eb37
RW
2393 (method git-fetch)
2394 (uri (git-reference
2395 (url "https://github.com/brummer10/gxtuner.git")
2396 (commit (string-append "v" version))))
2397 (file-name (git-file-name name version))
aed023ff
RW
2398 (sha256
2399 (base32
bed4eb37 2400 "1fxd2akan2njlr7fpkh84830783qhh1gg7yakswqk5dd466dcn96"))))
aed023ff
RW
2401 (build-system gnu-build-system)
2402 (arguments
2403 `(#:make-flags
2404 (list (string-append "PREFIX=" (assoc-ref %outputs "out"))
2405 (string-append "INCLUDE_L_DIR="
2406 (assoc-ref %build-inputs "zita-resampler")
2407 "/include/"))
2408 #:phases
2409 (modify-phases %standard-phases
2410 (delete 'configure))))
2411 (inputs
f5e0ff0f 2412 `(("gtk+" ,gtk+)
aed023ff
RW
2413 ("jack" ,jack-1)
2414 ("fftwf" ,fftwf)
2415 ("cairo" ,cairo)
2416 ("zita-resampler" ,zita-resampler)))
2417 (native-inputs
2418 `(("pkg-config" ,pkg-config)))
2419 (home-page "https://github.com/brummer10/gxtuner")
2420 (synopsis "Guitar tuner")
2421 (description "GXtuner is a simple guitar tuner for JACK with an
2422analogue-like user interface.")
2423 (license license:gpl2+)))
2424
c2c9e748 2425(define-public mod-host
9f1ac4fa 2426 ;; The last release was in 2014 but since then hundreds of commits have
c2c9e748 2427 ;; been made.
9f1ac4fa
RW
2428 (let ((commit "1726ad06b11323da7e1aaed690ff8aef91f702b5")
2429 (revision "3"))
c2c9e748
RW
2430 (package
2431 (name "mod-host")
2432 (version (string-append "0.10.6-" revision "." (string-take commit 9)))
2433 (source (origin
2434 (method git-fetch)
2435 (uri (git-reference
2436 (url "https://github.com/moddevices/mod-host")
2437 (commit commit)))
2438 (sha256
2439 (base32
9f1ac4fa 2440 "1nrd37c35w6z6ldczgrwmmd9hx1n3zyvcjcgb3mi4cygqdanvspv"))
c2c9e748
RW
2441 (file-name (string-append name "-" version "-checkout"))))
2442 (build-system gnu-build-system)
2443 (arguments
2444 `(#:tests? #f ; no tests included
2445 #:make-flags
2446 (list (string-append "PREFIX=" (assoc-ref %outputs "out"))
2447 "CC=gcc")
2448 #:phases
2449 (modify-phases %standard-phases
2450 (delete 'configure)
2451 (add-after 'unpack 'fix-jack-installation-directory
2452 (lambda _
2453 ;; Do not attempt to install files to output of "jack" package.
2454 (substitute* "Makefile"
2455 (("\\$\\(shell pkg-config --variable=libdir jack\\)")
2456 "lib"))
2457 #t)))))
2458 (inputs
2459 `(("lilv" ,lilv)
c96cb01a
DC
2460 ("fftw" ,fftw)
2461 ("fftwf" ,fftwf)
c2c9e748
RW
2462 ("lv2" ,lv2)
2463 ("jack" ,jack-1)
2464 ("readline" ,readline)))
2465 (native-inputs
2466 `(("pkg-config" ,pkg-config)
2467 ("python" ,python-2)))
2468 (home-page "https://github.com/moddevices/mod-host")
2469 (synopsis "LV2 host for Jack controllable via socket or command line")
2470 (description "mod-host is an LV2 plugin host for JACK, controllable via
2471socket or command line.")
2472 (license license:gpl3+))))
2473
19d93ef5
SR
2474(define-public curseradio
2475 (let ((commit "1bd4bd0faeec675e0647bac9a100b526cba19f8d")
2476 (revision "1"))
2477 (package
2478 (name "curseradio")
2479 (version (git-version "0" revision commit))
2480 (source (origin
2481 (method git-fetch)
2482 (uri (git-reference
2483 (url "https://github.com/chronitis/curseradio.git")
2484 (commit commit)))
2485 (file-name (git-file-name name version))
2486 (sha256
2487 (base32
2488 "11bf0jnj8h2fxhpdp498189r4s6b47vy4wripv0z4nx7lxajl88i"))))
2489 (build-system python-build-system)
2490 (propagated-inputs
2491 `(("python-lxml" ,python-lxml)
2492 ("python-requests" ,python-requests)
2493 ("python-pyxdg" ,python-pyxdg)
2494 ("mpv" ,mpv)))
2495 (home-page "https://github.com/chronitis/curseradio")
2496 (synopsis "Command-line Internet radio player")
2497 (description "Curseradio is a Curses-based radio player that uses a
2498tune-in sender list from @url{http://opml.radiotime.com}.")
2499 (license license:expat))))
2500
aa0edd3f
AM
2501(define-public pianobar
2502 (package
2503 (name "pianobar")
3999b664 2504 (version "2016.06.02")
aa0edd3f 2505 (source (origin
1410e178
RW
2506 (method git-fetch)
2507 (uri (git-reference
2508 (url "https://github.com/PromyLOPh/pianobar.git")
2509 (commit version)))
2510 (file-name (git-file-name name version))
aa0edd3f
AM
2511 (sha256
2512 (base32
1410e178 2513 "058fbdxp7n35hxwy3b8slfy4pb4n63cb173vfmywqa06wh1dv6f6"))))
aa0edd3f
AM
2514 (build-system gnu-build-system)
2515 (arguments
2516 `(#:tests? #f ; no tests
2517 #:make-flags (list "CC=gcc" "CFLAGS=-std=c99"
2518 (string-append "PREFIX=" %output))
2519 #:phases (modify-phases %standard-phases
2520 (delete 'configure))))
2521 (inputs
2522 `(("ao" ,ao)
2523 ("curl" ,curl)
2524 ("libgcrypt" ,libgcrypt)
2525 ("json-c" ,json-c)
bb5c508c 2526 ("ffmpeg" ,ffmpeg-3.4)))
aa0edd3f
AM
2527 (native-inputs
2528 `(("pkg-config" ,pkg-config)))
2529 (home-page "http://6xq.net/projects/pianobar/")
2530 (synopsis "Console-based pandora.com player")
2531 (description "pianobar is a console-based music player for the
2532personalized online radio pandora.com. It has configurable keys for playing
2533and managing stations, can be controlled remotely via fifo, and can run
2534event-based scripts for scrobbling, notifications, etc.")
2535 (license license:expat)))
3f7a182d 2536
1deab8cb
CB
2537(define-public picard
2538 (package
2539 (name "picard")
b421e915 2540 (version "2.1.3")
1deab8cb
CB
2541 (source (origin
2542 (method url-fetch)
2543 (uri (string-append
2544 "https://musicbrainz.osuosl.org/pub/musicbrainz/"
2545 "picard/picard-" version ".tar.gz"))
2546 (sha256
2547 (base32
b421e915 2548 "19w5k3bf4886gdycxjds9nkjvir0gwy2r5cqkz0lbls4ikk4y14f"))))
1deab8cb
CB
2549 (build-system python-build-system)
2550 (arguments
251448f7
TGR
2551 '(#:use-setuptools? #f
2552 #:configure-flags
e28b0798
TGR
2553 (list "--root=/"
2554 ;; Don't phone home or show ‘Check for Update…’ in the Help menu.
2555 "--disable-autoupdate")
251448f7 2556 #:phases
1deab8cb
CB
2557 (modify-phases %standard-phases
2558 (add-after 'unpack 'patch-source
2559 (lambda* (#:key inputs #:allow-other-keys)
2560 (substitute* "picard/const/__init__.py"
2561 (("pyfpcalc")
2562 (string-append
2563 "pyfpcalc', '"
e247244e
TGR
2564 (assoc-ref inputs "chromaprint") "/bin/fpcalc")))
2565 #t)))))
1deab8cb
CB
2566 (native-inputs
2567 `(("gettext" ,gettext-minimal)))
2568 (inputs
2569 `(("chromaprint" ,chromaprint)
7d9fa5f3 2570 ("python-discid" ,python-discid)
1deab8cb
CB
2571 ("python-pyqt" ,python-pyqt)
2572 ("python-mutagen" ,python-mutagen)))
2573 (home-page "https://picard.musicbrainz.org/")
2574 (synopsis "Graphical music tagging application")
2575 (description
2576 "MusicBrainz Picard is a music tagging application, supporting multiple
2577formats, looking up tracks through metadata and audio fingerprints.")
2578 (license license:gpl2+)))
2579
3f7a182d
LF
2580(define-public python-mutagen
2581 (package
2582 (name "python-mutagen")
e39aae4f 2583 (version "1.38")
3f7a182d
LF
2584 (source (origin
2585 (method url-fetch)
2586 (uri (pypi-uri "mutagen" version))
2587 (sha256
2588 (base32
e39aae4f 2589 "0rl7sxn1rcjl48fwga3dqf9f6pzspsny4ngxyf6pp337mrq0z693"))))
3f7a182d 2590 (build-system python-build-system)
4228a79e
LF
2591 (native-inputs
2592 `(("python-pytest" ,python-pytest)))
3f7a182d
LF
2593 (home-page "https://bitbucket.org/lazka/mutagen")
2594 (synopsis "Read and write audio tags")
2595 (description "Mutagen is a Python module to handle audio metadata. It
2596supports ASF, FLAC, M4A, Monkey’s Audio, MP3, Musepack, Ogg FLAC, Ogg Speex, Ogg
2597Theora, Ogg Vorbis, True Audio, WavPack and OptimFROG audio files. All versions
2598of ID3v2 are supported, and all standard ID3v2.4 frames are parsed. It can read
2599Xing headers to accurately calculate the bitrate and length of MP3s. ID3 and
2600APEv2 tags can be edited regardless of audio format. It can also manipulate Ogg
2601streams on an individual packet/page level.")
2602 (license license:gpl2))) ; "later version" never mentioned
2603
2604(define-public python2-mutagen
2605 (package-with-python2 python-mutagen))
8975de88
LF
2606
2607(define-public python-musicbrainzngs
2608 (package
2609 (name "python-musicbrainzngs")
daedf34d 2610 (version "0.6")
8975de88
LF
2611 (source (origin
2612 (method url-fetch)
2613 (uri (pypi-uri "musicbrainzngs" version))
2614 (sha256
2615 (base32
daedf34d 2616 "1dddarpjawryll2wss65xq3v9q8ln8dan7984l5dxzqx88d2dvr8"))))
8975de88 2617 (build-system python-build-system)
daedf34d
LF
2618 (arguments
2619 '(;; The tests fail suffer from race conditions:
2620 ;; https://github.com/alastair/python-musicbrainzngs/issues/211
2621 #:tests? #f))
8975de88
LF
2622 (home-page "https://python-musicbrainzngs.readthedocs.org/")
2623 (synopsis "Python bindings for MusicBrainz NGS webservice")
2624 (description "Musicbrainzngs implements Python bindings of the MusicBrainz
2625web service. This library can be used to retrieve music metadata from the
2626MusicBrainz database.")
2627 ;; 'musicbrainzngs/compat.py' is ISC licensed.
2628 (license (list license:bsd-2 license:isc))))
2629
2630(define-public python2-musicbrainzngs
2631 (package-with-python2 python-musicbrainzngs))
e8fee648 2632
07c82daa
GH
2633(define-public python-isrcsubmit
2634 (package
2635 (name "python-isrcsubmit")
2636 (version "2.0.1")
2637 (source
2638 (origin
2639 (method url-fetch)
2640 (uri (pypi-uri "isrcsubmit" version))
2641 (sha256
2642 (base32
2643 "0jh4cni8qhri6dh83cmp0i0m0384vv0vznlygv49wj9xzh1d99qv"))))
2644 (build-system python-build-system)
2645 (propagated-inputs
2646 `(("python-discid" ,python-discid)
2647 ("python-musicbrainzngs" ,python-musicbrainzngs)))
2648 (home-page "https://github.com/JonnyJD/musicbrainz-isrcsubmit")
2649 (synopsis "Submit ISRCs from CDs to MusicBrainz")
2650 (description "@code{isrcsubmit} is a tool to extract @dfn{International
2651Standard Recording Code} (ISRCs) from audio CDs and submit them to
2652@url{https://musicbrainz.org/, MusicBrainz}.")
2653 (license license:gpl3+)))
2654
a2eab422 2655(define-public python2-pyechonest
e8fee648 2656 (package
a2eab422 2657 (name "python2-pyechonest")
e8fee648
LF
2658 (version "9.0.0")
2659 (source (origin
2660 (method url-fetch)
2661 (uri (pypi-uri "pyechonest" version))
2662 (sha256
2663 (base32
2664 "1584nira3rkiman9dm81kdshihmkj21s8navndz2l8spnjwb790x"))))
2665 (build-system python-build-system)
a2eab422
LF
2666 (arguments
2667 `(;; Python 3 is not supported:
2668 ;; https://github.com/echonest/pyechonest/issues/42
2669 #:python ,python-2))
e8fee648
LF
2670 (home-page "https://github.com/echonest/pyechonest")
2671 (synopsis "Python interface to The Echo Nest APIs")
d3e3468f
LF
2672 (description "Pyechonest is a Python library for the Echo Nest API. With
2673Pyechonest you have Python access to the entire set of API methods including:
e8fee648
LF
2674
2675@enumerate
2676@item artist - search for artists by name, description, or attribute, and get
2677back detailed information about any artist including audio, similar artists,
2678blogs, familiarity, hotttnesss, news, reviews, urls and video.
2679@item song - search songs by artist, title, description, or attribute (tempo,
2680duration, etc) and get detailed information back about each song, such as
2681hotttnesss, audio_summary, or tracks.
2682@item track - upload a track to the Echo Nest and receive summary information
2683about the track including key, duration, mode, tempo, time signature along with
2684detailed track info including timbre, pitch, rhythm and loudness information.
2685@end enumerate\n")
a2eab422 2686 (license license:bsd-3)))
acd7351f
LF
2687
2688(define-public python-pylast
2689 (package
2690 (name "python-pylast")
653f2b92 2691 (version "2.0.0")
acd7351f
LF
2692 (source (origin
2693 (method url-fetch)
2694 (uri (pypi-uri "pylast" version))
2695 (sha256
2696 (base32
653f2b92 2697 "0r9h7g8i8l2mgqjwkda3v6prfbkb2im5kap1az9ppmhjm9i4jkcf"))))
acd7351f 2698 (build-system python-build-system)
653f2b92
RW
2699 ;; Tests require network access. See
2700 ;; https://github.com/pylast/pylast/issues/105
2701 (arguments '(#:tests? #f))
acd7351f
LF
2702 (native-inputs
2703 `(("python-coverage" ,python-coverage)
653f2b92 2704 ("python-pycodestyle" ,python-pycodestyle)
acd7351f
LF
2705 ("python-mock" ,python-mock)
2706 ("python-pep8" ,python-pep8)
2707 ("python-pytest" ,python-pytest)
653f2b92 2708 ("python-flaky" ,python-flaky)
acd7351f
LF
2709 ("python-pyflakes" ,python-pyflakes)
2710 ("python-pyyaml" ,python-pyyaml)))
2711 (propagated-inputs
2712 `(("python-six" ,python-six)))
2713 (home-page "https://github.com/pylast/pylast")
2714 (synopsis "Python interface to Last.fm and Libre.fm")
2715 (description "A Python interface to Last.fm and other API-compatible
2716websites such as Libre.fm.")
5c31f4aa 2717 (license license:asl2.0)))
acd7351f
LF
2718
2719(define-public python2-pylast
5c31f4aa 2720 (package-with-python2 python-pylast))
3bf429af 2721
b0dea60c
SR
2722(define-public instantmusic
2723 (let ((commit "300891d09c703525215fa5a116b9294af1c923c8")
2724 (revision "1"))
2725 (package
2726 (name "instantmusic")
2727 (version (git-version "1.0" revision commit))
2728 (source (origin
2729 (method git-fetch)
2730 (uri (git-reference
2731 (url "https://github.com/yask123/Instant-Music-Downloader.git")
2732 (commit commit)))
2733 (file-name (git-file-name name version))
2734 (sha256
2735 (base32
2736 "0j7qivaa04bpdz3anmgci5833dgiyfqqwq9fdrpl9m68b34gl773"))))
2737 (build-system python-build-system)
2738 (propagated-inputs
2739 `(("python-requests" ,python-requests)
c695fb76 2740 ("eyed3" ,eyed3)
b0dea60c
SR
2741 ("python-beautifulsoup4" ,python-beautifulsoup4)
2742 ("youtube-dl" ,youtube-dl)))
2743 (arguments
2744 '(#:modules ((guix build python-build-system)
2745 (guix build utils)
2746 (srfi srfi-26))
2747 #:phases (modify-phases %standard-phases
2748 (add-before 'build 'change-directory
2749 (lambda _
2750 (chdir "instantmusic-0.1") #t))
2751 (add-before 'check 'fix-file-permissions
2752 (lambda _
2753 ;; Fix some read-only files that would cause a build failure
2754 (for-each (cut chmod <> #o644)
2755 (find-files "instantmusic.egg-info"
2756 "PKG-INFO|.*\\.txt"))
2757 #t)))))
2758 (home-page "http://iyask.me/Instant-Music-Downloader/")
2759 (synopsis "Command-line program to download a song from YouTube")
2760 (description "InstantMusic downloads a song from YouTube in MP3 format.
2761Songs can be searched by artist, name or even by a part of the song text.")
2762 (license license:expat))))
2763
3bf429af
LF
2764(define-public beets
2765 (package
2766 (name "beets")
191c439e 2767 (version "1.4.7")
3bf429af
LF
2768 (source (origin
2769 (method url-fetch)
23319ed6 2770 (uri (pypi-uri "beets" version))
c05c1910 2771 (patches (search-patches "beets-python-3.7-fix.patch"))
3bf429af
LF
2772 (sha256
2773 (base32
191c439e 2774 "0w3gz69s9gf5ih69d4sddgh7ndj7658m621bp742zldvjakdncrs"))))
3bf429af
LF
2775 (build-system python-build-system)
2776 (arguments
0d48ff81 2777 `(#:phases
3bf429af
LF
2778 (modify-phases %standard-phases
2779 (add-after 'unpack 'set-HOME
46fce968
TGR
2780 (lambda _
2781 (setenv "HOME" (string-append (getcwd) "/tmp"))
2782 #t))
aa007978
DM
2783 (add-after 'unpack 'make-python3.7-compatible
2784 (lambda _
2785 ;; See <https://github.com/beetbox/beets/issues/2978>.
2786 (substitute* "beets/autotag/hooks.py"
2787 (("re\\._pattern_type") "re.Pattern"))
2788 #t))
36c2c8c8 2789 (replace 'check
46fce968
TGR
2790 (lambda _
2791 (invoke "nosetests" "-v"))))))
3bf429af 2792 (native-inputs
0d48ff81
LF
2793 `(("python-beautifulsoup4" ,python-beautifulsoup4)
2794 ("python-flask" ,python-flask)
2795 ("python-mock" ,python-mock)
2796 ("python-mpd2" ,python-mpd2)
2797 ("python-nose" ,python-nose)
2798 ("python-pathlib" ,python-pathlib)
2799 ("python-pyxdg" ,python-pyxdg)
2800 ("python-pylast" ,python-pylast)
2801 ("python-rarfile" ,python-rarfile)
2802 ("python-responses" ,python-responses)))
3bf429af 2803 ;; TODO: Install optional plugins and dependencies.
b3470031 2804 (inputs
0d48ff81 2805 `(("python-discogs-client" ,python-discogs-client)
0d48ff81
LF
2806 ("python-jellyfish" ,python-jellyfish)
2807 ("python-munkres" ,python-munkres)
2808 ("python-musicbrainzngs" ,python-musicbrainzngs)
2809 ("python-mutagen" ,python-mutagen)
2810 ("python-pyyaml" ,python-pyyaml)
2811 ("python-unidecode" ,python-unidecode)))
3bf429af
LF
2812 (home-page "http://beets.io")
2813 (synopsis "Music organizer")
2814 (description "The purpose of beets is to get your music collection right
2815once and for all. It catalogs your collection, automatically improving its
2816metadata as it goes using the MusicBrainz database. Then it provides a variety
2817of tools for manipulating and accessing your music.")
2818 (license license:expat)))
21d18113
KY
2819
2820(define-public milkytracker
2821 (package
2822 (name "milkytracker")
b7e2fcf0 2823 (version "1.02.00")
21d18113 2824 (source (origin
caa39e56
RW
2825 (method git-fetch)
2826 (uri (git-reference
2827 (url "https://github.com/milkytracker/MilkyTracker.git")
2828 (commit (string-append "v" version))))
2829 (file-name (git-file-name name version))
21d18113
KY
2830 (sha256
2831 (base32
caa39e56 2832 "05a6d7l98k9i82dwrgi855dnccm3f2lkb144gi244vhk1156n0ca"))
e3b2e943
KK
2833 (modules '((guix build utils)))
2834 ;; Remove non-FSDG compliant sample songs.
2835 (snippet
2836 '(begin
2837 (delete-file-recursively "resources/music")
2838 (substitute* "CMakeLists.txt"
6cbee49d
MW
2839 (("add_subdirectory\\(resources/music\\)") ""))
2840 #t))))
e3b2e943 2841 (build-system cmake-build-system)
21d18113 2842 (arguments
7f2f8345
KK
2843 '(#:tests? #f ; no check target
2844 ;; This flag ensures that MilkyTracker links with the JACK library.
2845 #:configure-flags '("-DCMAKE_CXX_FLAGS=-ljack")))
21d18113
KY
2846 (inputs
2847 `(("alsa-lib" ,alsa-lib)
ba259bad 2848 ("lhasa" ,lhasa)
21d18113 2849 ("jack" ,jack-1)
f1618a0f 2850 ("rtmidi" ,rtmidi)
e3b2e943 2851 ("sdl" ,sdl2)
f1618a0f
KK
2852 ("zlib" ,zlib)
2853 ("zziplib" ,zziplib)))
21d18113
KY
2854 (native-inputs
2855 `(("pkg-config" ,pkg-config)))
2856 (synopsis "Music tracker for working with .MOD/.XM module files")
2857 (description "MilkyTracker is a music application for creating .MOD and .XM
2858module files. It attempts to recreate the module replay and user experience of
2859the popular DOS program Fasttracker II, with special playback modes available
2860for improved Amiga ProTracker 2/3 compatibility.")
1b35fea1 2861 (home-page "http://milkytracker.titandemo.org/")
21d18113
KY
2862 ;; 'src/milkyplay' is under Modified BSD, the rest is under GPL3 or later.
2863 (license (list license:bsd-3 license:gpl3+))))
13416a10 2864
89bcf3fc
KK
2865(define-public schismtracker
2866 (package
2867 (name "schismtracker")
a8b567f9 2868 (version "20181223")
89bcf3fc 2869 (source (origin
3b9e9415
RW
2870 (method git-fetch)
2871 (uri (git-reference
2872 (url "https://github.com/schismtracker/schismtracker.git")
2873 (commit version)))
2874 (file-name (git-file-name name version))
89bcf3fc
KK
2875 (sha256
2876 (base32
a8b567f9 2877 "18k5j10zq39y2q294avdmar87x93k57wqmq8bpz562hdqki2mz1l"))
89bcf3fc
KK
2878 (modules '((guix build utils)))
2879 (snippet
2880 ;; Remove use of __DATE__ and __TIME__ for reproducibility.
6cbee49d
MW
2881 `(begin
2882 (substitute* "schism/version.c"
2883 (("Schism Tracker built %s %s.*$")
2884 (string-append "Schism Tracker version " ,version "\");")))
2885 #t))))
89bcf3fc
KK
2886 (build-system gnu-build-system)
2887 (arguments
2888 `(#:phases
2889 (modify-phases %standard-phases
89bcf3fc
KK
2890 (add-before 'configure 'link-libm
2891 (lambda _ (setenv "LIBS" "-lm") #t)))))
2892 (native-inputs
2893 `(("autoconf" ,autoconf)
2894 ("automake" ,automake)
2895 ("python" ,python)))
2896 (inputs
2897 `(("alsa-lib" ,alsa-lib) ; for asound dependency
2898 ("libx11" ,libx11)
2899 ("libxext" ,libxext)
2900 ("sdl" ,sdl)))
2901 (home-page "http://schismtracker.org")
2902 (synopsis "Oldschool sample-based music composition tool")
2903 (description
2904 "Schism Tracker is a reimplementation of Impulse Tracker, a program used to
2905create high quality music without the requirements of specialized, expensive
2906equipment, and with a unique \"finger feel\" that is difficult to replicate in
2907part. The player is based on a highly modified version of the ModPlug engine,
2908with a number of bugfixes and changes to improve IT playback.")
2909 (license license:gpl2+)))
2910
5beecc32
RW
2911(define-public sooperlooper
2912 (package
2913 (name "sooperlooper")
2914 (version "1.7.3")
2915 (source (origin
2916 (method url-fetch)
2917 (uri (string-append "http://essej.net/sooperlooper/sooperlooper-"
2918 version ".tar.gz"))
2919 (sha256
2920 (base32
2921 "0n2gdxw1fx8nxxnpzf4sj0kp6k6zi1yq59cbz6qqzcnsnpnvszbs"))
2922 (patches (search-patches "sooperlooper-build-with-wx-30.patch"))))
2923 (build-system gnu-build-system)
2924 (arguments
2925 `(#:make-flags (list "CXXFLAGS=-std=gnu++11")
2926 #:phases
2927 (modify-phases %standard-phases
2928 (add-after 'unpack 'add-sigc++-includes
2929 (lambda* (#:key inputs #:allow-other-keys)
2930 (let ((sig (assoc-ref inputs "libsigc++"))
2931 (xml (assoc-ref inputs "libxml2"))
2932 (cwd (getcwd)))
2933 (setenv "CPATH"
2934 (string-append sig "/include/sigc++-2.0:"
2935 sig "/lib/sigc++-2.0/include:"
2936 xml "/include/libxml2/:"
2937 cwd "/libs/pbd:"
2938 cwd "/libs/midi++")))
2939 (substitute* '("src/control_osc.hpp"
2940 "src/gui/app_frame.hpp"
2941 "src/gui/config_panel.hpp"
2942 "src/gui/keys_panel.hpp"
2943 "src/gui/latency_panel.hpp"
2944 "src/gui/main_panel.hpp"
2945 "src/gui/midi_bind_panel.hpp"
2946 "src/gui/prefs_dialog.hpp")
2947 (("sigc\\+\\+/object.h")
2948 "sigc++/sigc++.h"))
2949 (substitute* '("src/engine.cpp"
2950 "src/gui/latency_panel.cpp"
2951 "src/gui/looper_panel.cpp"
2952 "src/gui/main_panel.cpp")
2953 (("(\\(| )bind " _ pre)
2954 (string-append pre "sigc::bind ")))
2955 #t))
2956 (add-after 'unpack 'fix-xpm-warnings
2957 (lambda _
2958 (substitute* (find-files "." "\\.xpm$")
2959 (("static char") "static const char"))
2960 #t)))))
2961 (inputs
2962 `(("jack" ,jack-1)
2963 ("alsa-lib" ,alsa-lib)
2964 ("wxwidgets" ,wxwidgets-gtk2)
2965 ("libsndfile" ,libsndfile)
2966 ("libsamplerate" ,libsamplerate)
2967 ("liblo" ,liblo)
2968 ("rubberband" ,rubberband)
2969 ("libxml2" ,libxml2)
2970 ("libsigc++" ,libsigc++)
2971 ("ncurses" ,ncurses)))
2972 (native-inputs
2973 `(("pkg-config" ,pkg-config)))
2974 (home-page "http://essej.net/sooperlooper/")
2975 (synopsis "Live looping sampler")
2976 (description
2977 "SooperLooper is a live looping sampler capable of immediate loop
2978recording, overdubbing, multiplying, reversing and more. It allows for
2979multiple simultaneous multi-channel loops limited only by your computer's
2980available memory.")
2981 (license license:gpl2+)))
2982
13416a10
KY
2983(define-public moc
2984 (package
2985 (name "moc")
2fbc004f 2986 (version "2.5.2")
13416a10
KY
2987 (source (origin
2988 (method url-fetch)
2989 (uri (string-append "http://ftp.daper.net/pub/soft/"
2990 name "/stable/"
2991 name "-" version ".tar.bz2"))
2992 (sha256
2993 (base32
2784b35f 2994 "026v977kwb0wbmlmf6mnik328plxg8wykfx9ryvqhirac0aq39pk"))))
13416a10
KY
2995 (build-system gnu-build-system)
2996 (inputs
2997 `(("alsa-lib" ,alsa-lib)
2998 ("curl" ,curl)
2999 ("faad2" ,faad2)
bb5c508c 3000 ("ffmpeg" ,ffmpeg-3.4)
13416a10
KY
3001 ("file" ,file)
3002 ("jack" ,jack-1)
3003 ("libid3tag" ,libid3tag)
3004 ("libltdl" ,libltdl)
3005 ("libmodplug" ,libmodplug)
3006 ("libmpcdec" ,libmpcdec)
3007 ("libmad" ,libmad)
6beaa5a0
MM
3008 ("libogg" ,libogg)
3009 ("libvorbis" ,libvorbis)
13416a10
KY
3010 ("ncurses" ,ncurses)
3011 ("openssl" ,openssl)
3012 ("sasl" ,cyrus-sasl)
3013 ("speex" ,speex)
3014 ("taglib" ,taglib)
3015 ("wavpack" ,wavpack)
3016 ("zlib" ,zlib)))
3017 (native-inputs
3018 `(("pkg-config" ,pkg-config)))
3019 (synopsis "Console audio player designed to be powerful and easy to use")
3020 (description
3021 "Music on Console is a console audio player that supports many file
3022formats, including most audio formats recognized by FFMpeg.")
3023 (home-page "http://moc.daper.net")
3024 (license license:gpl2+)))
6d3ef286
JF
3025
3026(define-public midicsv
3027 (package
3028 (name "midicsv")
3029 (version "1.1")
3030 (source (origin
3031 (method url-fetch)
3032 (uri (string-append "http://www.fourmilab.ch/webtools/midicsv/"
3033 name "-" version ".tar.gz"))
3034 (sha256
3035 (base32
3036 "1vvhk2nf9ilfw0wchmxy8l13hbw9cnpz079nsx5srsy4nnd78nkw"))))
3037 (build-system gnu-build-system)
3038 (arguments
3039 `(#:phases (modify-phases %standard-phases (delete 'configure))
3040 #:make-flags (list "CC=gcc" (string-append "INSTALL_DEST=" %output))))
3041 (synopsis "Convert MIDI files to and from CSV")
3042 (description
3043 "Midicsv reads a standard MIDI file and decodes it into a comma-separated
3044value file (CSV), which preserves all the information in the MIDI file. The
3045ASCII CSV file may be loaded into a spreadsheet or database application, or
3046processed by a program to transform the MIDI data (for example, to key
3047transpose a composition or extract a track from a multi-track sequence). A
3048CSV file in the format created by midicsv may be converted back into a
3049standard MIDI file with the csvmidi program.")
3050 (home-page "http://www.fourmilab.ch/webtools/midicsv/")
3051 (license license:public-domain)))
49604680
RW
3052
3053(define-public gx-guvnor-lv2
35f909d4
RW
3054 (package
3055 (name "gx-guvnor-lv2")
3056 (version "0.1")
3057 (source (origin
6ac8c78c
RW
3058 (method git-fetch)
3059 (uri (git-reference
3060 (url "https://github.com/brummer10/GxGuvnor.lv2.git")
3061 (commit (string-append "v" version))))
3062 (file-name (string-append name "-" version "-checkout"))
35f909d4
RW
3063 (sha256
3064 (base32
6ac8c78c 3065 "1wa5070j40p7f0b3kr259pzm99xb6cf2badr2capayjvgayd6gnm"))))
35f909d4
RW
3066 (build-system gnu-build-system)
3067 (arguments
3068 `(;; The check target is used only to output a warning.
3069 #:tests? #f
3070 #:make-flags
3071 (list (string-append "DESTDIR=" (assoc-ref %outputs "out")))
3072 #:phases
3073 (modify-phases %standard-phases
3074 (replace 'configure
3075 (lambda _
3076 (substitute* "Makefile"
6ac8c78c
RW
3077 (("INSTALL_DIR = .*") "INSTALL_DIR=/lib/lv2\n")
3078 (("install : all") "install :"))
35f909d4
RW
3079 #t)))))
3080 (inputs
3081 `(("lv2" ,lv2)))
3082 (home-page "https://github.com/brummer10/GxGuvnor.lv2")
3083 (synopsis "Overdrive/distortion pedal simulation")
3084 (description "This package provides the LV2 plugin \"GxGuvnor\", a
49604680 3085simulation of an overdrive or distortion pedal for guitars.")
35f909d4 3086 ;; The LICENSE file says GPLv3 but the license headers in the files say
4b359532
RW
3087 ;; GPLv2 or later. The whole project is released under GPLv3 or later
3088 ;; according to https://github.com/brummer10/GxGuvnor.lv2/issues/1
3089 (license license:gpl3+)))
85ae347e
RW
3090
3091(define-public gx-vbass-preamp-lv2
1b74b126
RW
3092 (let ((commit "eb999b0ca0ef4da40a59e458a9ab6e7042b96c99")
3093 (revision "2"))
85ae347e
RW
3094 (package (inherit gx-guvnor-lv2)
3095 (name "gx-vbass-preamp-lv2")
3096 (version (string-append "0-" revision "." (string-take commit 9)))
3097 (source (origin
3098 (method git-fetch)
3099 (uri (git-reference
3100 (url "https://github.com/brummer10/GxVBassPreAmp.lv2")
3101 (commit commit)))
3102 (sha256
3103 (base32
1b74b126 3104 "0firap073ldw4nrykkd7jvyyj0jbl1nslxyzjj4kswazp99x7d9h"))
85ae347e 3105 (file-name (string-append name "-" version "-checkout"))))
1b74b126
RW
3106 (inputs
3107 `(("lv2" ,lv2)
3108 ("gtk+" ,gtk+-2)))
3109 (native-inputs
3110 `(("pkg-config" ,pkg-config)))
85ae347e
RW
3111 (home-page "https://github.com/brummer10/GxVBassPreAmp.lv2")
3112 (synopsis "Simulation of the Vox Venue Bass 100 Pre Amp Section")
3113 (description "This package provides the LV2 plugin \"GxVBassPreAmp\", a
3114pre-amplifier simulation modelled after the 1984 Vox Venue Bass 100 Pre Amp
3115Section."))))
cdc7a021
RW
3116
3117(define-public gx-overdriver-lv2
3118 (let ((commit "ed71801987449414bf3adaa0dbfac68e8775f1ce")
3119 (revision "1"))
1b74b126 3120 (package (inherit gx-guvnor-lv2)
cdc7a021
RW
3121 (name "gx-overdriver-lv2")
3122 (version (string-append "0-" revision "." (string-take commit 9)))
3123 (source (origin
3124 (method git-fetch)
3125 (uri (git-reference
3126 (url "https://github.com/brummer10/GxOverDriver.lv2")
3127 (commit commit)))
3128 (sha256
3129 (base32
3130 "13j614jh525fbkby79nnzwj0z1ac0c9wclyn5pfqvkmx6a7j24r8"))
3131 (file-name (string-append name "-" version "-checkout"))))
3132 (home-page "https://github.com/brummer10/GxOverDriver.lv2")
3133 (synopsis "Overdrive effect with level and tone control")
3134 (description "This package provides the LV2 plugin \"GxOverDriver\", an
3135overdrive effect."))))
4d95cd30
RW
3136
3137(define-public gx-tone-mender-lv2
3138 (let ((commit "b6780b4a3e4782b3ed0e5882d6788f178aed138f")
3139 (revision "1"))
1b74b126 3140 (package (inherit gx-guvnor-lv2)
4d95cd30
RW
3141 (name "gx-tone-mender-lv2")
3142 (version (string-append "0-" revision "." (string-take commit 9)))
3143 (source (origin
3144 (method git-fetch)
3145 (uri (git-reference
3146 (url "https://github.com/brummer10/GxToneMender.lv2")
3147 (commit commit)))
3148 (sha256
3149 (base32
3150 "07qdcfsvv2vdnfnjh91pfgvjdcs5y91nvwfm8c0z8fp6b4bk7a9q"))
3151 (file-name (string-append name "-" version "-checkout"))))
3152 (home-page "https://github.com/brummer10/GxToneMender.lv2")
3153 (synopsis "Clean boost with a 3-knob tonestack")
3154 (description "This package provides the LV2 plugin \"GxToneMender\", a
3155clean boost effect with a 3-knob tonestack."))))
4d4bfdc2
RW
3156
3157(define-public gx-push-pull-lv2
3158 (let ((commit "7f76ae2068498643ac8671ee0930b13ee3fd8eb5")
3159 (revision "1"))
1b74b126 3160 (package (inherit gx-guvnor-lv2)
4d4bfdc2
RW
3161 (name "gx-push-pull-lv2")
3162 (version (string-append "0-" revision "." (string-take commit 9)))
3163 (source (origin
3164 (method git-fetch)
3165 (uri (git-reference
3166 (url "https://github.com/brummer10/GxPushPull.lv2")
3167 (commit commit)))
3168 (sha256
3169 (base32
3170 "12f5hwck2irph0gjbj8xy8jqcqdwb8l1hlwf29k0clz52h1jhb5q"))
3171 (file-name (string-append name "-" version "-checkout"))))
3172 (home-page "https://github.com/brummer10/GxPushPull.lv2")
3173 (synopsis "Octave up push pull transistor fuzz simulation")
3174 (description "This package provides the LV2 plugin \"GxPushPull\", a
3175simulation of a push pull transistor fuzz effect with added high octave."))))
3eb1a964
RW
3176
3177(define-public gx-suppa-tone-bender-lv2
f959991d
RW
3178 (package (inherit gx-guvnor-lv2)
3179 (name "gx-suppa-tone-bender-lv2")
3180 (version "0.1")
3181 (source (origin
48b95a19
RW
3182 (method git-fetch)
3183 (uri (git-reference
3184 (url "https://github.com/brummer10/GxSuppaToneBender.lv2.git")
3185 (commit (string-append "v" version))))
3186 (file-name (string-append name "-" version "-checkout"))
f959991d
RW
3187 (sha256
3188 (base32
48b95a19 3189 "01x6bjmllkmvxfzc5xwdix7w021j26js71awv728cxsmkxgqw0zy"))))
f959991d
RW
3190 (home-page "https://github.com/brummer10/GxSuppaToneBender.lv2")
3191 (synopsis "Simulation of the Vox Suppa Tone Bender pedal")
3192 (description "This package provides the LV2 plugin
3eb1a964 3193\"GxSuppaToneBender\", a simulation modelled after the Vox Suppa Tone Bender
f959991d 3194pedal.")))
664f677f
RW
3195
3196(define-public gx-saturator-lv2
d9f65bd3
RW
3197 (let ((commit "605330f432c94b6eb3f8203cbe472befae959532")
3198 (revision "3"))
ad67ca3d 3199 (package (inherit gx-vbass-preamp-lv2)
664f677f
RW
3200 (name "gx-saturator-lv2")
3201 (version (string-append "0-" revision "." (string-take commit 9)))
3202 (source (origin
3203 (method git-fetch)
3204 (uri (git-reference
3205 (url "https://github.com/brummer10/GxSaturator.lv2")
3206 (commit commit)))
3207 (sha256
3208 (base32
d9f65bd3 3209 "1w4nvh0rmxrv3s3hmh4fs74f3hc0jn31v00j769j7v68mqr7kawy"))
664f677f
RW
3210 (file-name (string-append name "-" version "-checkout"))))
3211 (home-page "https://github.com/brummer10/GxSaturator.lv2")
3212 (synopsis "Saturation effect")
3213 (description "This package provides the LV2 plugin \"GxSaturator\", a
3214saturation effect."))))
89412238
RW
3215
3216(define-public gx-hyperion-lv2
4396e9b5
RW
3217 (package (inherit gx-guvnor-lv2)
3218 (name "gx-hyperion-lv2")
3219 (version "0.1")
3220 (source (origin
37519239
RW
3221 (method git-fetch)
3222 (uri (git-reference
3223 (url "https://github.com/brummer10/GxHyperion.lv2.git")
3224 (commit (string-append "v" version))))
3225 (file-name (string-append name "-" version "-checkout"))
4396e9b5
RW
3226 (sha256
3227 (base32
37519239 3228 "1vx79s6s9if117y2g0ppdja2sv2wcny6xcfl3j1z4cipahnildxf"))))
4396e9b5
RW
3229 (home-page "https://github.com/brummer10/GxHyperion.lv2")
3230 (synopsis "Simulation of the Hyperion Fuzz pedal")
3231 (description "This package provides the LV2 plugin \"GxHyperion\", a
3232simulation of the Hyperion Fuzz pedal.")))
32536f00
RW
3233
3234(define-public gx-voodoo-fuzz-lv2
cf44ebeb
RW
3235 (package (inherit gx-guvnor-lv2)
3236 (name "gx-voodoo-fuzz-lv2")
3237 (version "0.1")
3238 (source (origin
d42c6613
RW
3239 (method git-fetch)
3240 (uri (git-reference
3241 (url "https://github.com/brummer10/GxVoodoFuzz.lv2.git")
3242 (commit (string-append "v" version))))
3243 (file-name (string-append name "-" version "-checkout"))
cf44ebeb
RW
3244 (sha256
3245 (base32
d42c6613 3246 "1v0scphivri1fk4hl20j13f92i48mnx1zsil4hgnadsmm4nsfw43"))))
cf44ebeb
RW
3247 (home-page "https://github.com/brummer10/GxVoodoFuzz.lv2")
3248 (synopsis "Fuzz effect modelled after the Voodoo Lab SuperFuzz")
3249 (description "This package provides the LV2 plugin \"GxVoodooFuzz\", a
32536f00
RW
3250simulation modelled after the Voodoo Lab SuperFuzz pedal. It's basically a
3251Bosstone circuit, followed by the tone control of the FoxToneMachine in
cf44ebeb 3252parallel with a DarkBooster, followed by a volume control.")))
29f63222
RW
3253
3254(define-public gx-super-fuzz-lv2
34a3ecfe
RW
3255 (package (inherit gx-guvnor-lv2)
3256 (name "gx-super-fuzz-lv2")
3257 (version "0.1")
3258 (source (origin
5057535f
RW
3259 (method git-fetch)
3260 (uri (git-reference
3261 (url "https://github.com/brummer10/GxSuperFuzz.lv2.git")
3262 (commit (string-append "v" version))))
3263 (file-name (string-append name "-" version "-checkout"))
34a3ecfe
RW
3264 (sha256
3265 (base32
5057535f 3266 "1jlljd9hlgfflbiizq47lv1xbbgjyx3v835mf24zmh1q5zsw4np4"))))
34a3ecfe
RW
3267 (home-page "https://github.com/brummer10/GxSuperFuzz.lv2")
3268 (synopsis "Fuzz effect modelled after the UniVox SuperFuzz")
a6f39d7c 3269 (description "This package provides the LV2 plugin \"GxSuperFuzz\", an
29f63222 3270analog simulation of the UniVox SuperFuzz pedal. In this simulation the trim
d1e4ad1b 3271pot, which is usually in the housing, is exposed as a control parameter. It
34a3ecfe 3272adjusts the amount of harmonics.")))
40bffdfa
RW
3273
3274(define-public gx-vintage-fuzz-master-lv2
38050923
RW
3275 (package (inherit gx-guvnor-lv2)
3276 (name "gx-vintage-fuzz-master-lv2")
3277 (version "0.1")
3278 (source (origin
0febd673
RW
3279 (method git-fetch)
3280 (uri (git-reference
3281 (url "https://github.com/brummer10/GxVintageFuzzMaster.lv2.git")
3282 (commit (string-append "v" version))))
3283 (file-name (string-append name "-" version "-checkout"))
38050923
RW
3284 (sha256
3285 (base32
0febd673 3286 "02jb211z8rw2qr5r1z5mdxlqgiw6cbc319xpqplvn6k21c59mskv"))))
38050923
RW
3287 (home-page "https://github.com/brummer10/GxVintageFuzzMaster.lv2")
3288 (synopsis "Fuzz effect simulation of the vintage Fuzz Master")
3289 (description "This package provides the LV2 plugin
3290\"GxVintageFuzzMaster\", a simulation of the vintage Fuzz Master pedal.")))
631f8175
RW
3291
3292(define-public gx-slow-gear-lv2
d921a1f4
RW
3293 (let ((commit "5d37e775b0feef1d82feee94e2a7a2d7e57efe2d")
3294 (revision "3"))
ad67ca3d 3295 (package (inherit gx-vbass-preamp-lv2)
631f8175
RW
3296 (name "gx-slow-gear-lv2")
3297 (version (string-append "0-" revision "." (string-take commit 9)))
3298 (source (origin
3299 (method git-fetch)
3300 (uri (git-reference
3301 (url "https://github.com/brummer10/GxSlowGear.lv2")
3302 (commit commit)))
3303 (sha256
3304 (base32
d921a1f4 3305 "141mz69zkhk3lm54bb6wgpnghb92zm1ig7fv07240cmhydqji1q1"))
631f8175
RW
3306 (file-name (string-append name "-" version "-checkout"))))
3307 (home-page "https://github.com/brummer10/GxSlowGear.lv2")
3308 (synopsis "Slow gear audio effect")
3309 (description "This package provides the LV2 plugin \"GxSlowGear\", a
3310slow gear audio effect to produce volume swells."))))
d75e8f5a
RW
3311
3312(define-public gx-switchless-wah-lv2
cfcef2c2
RW
3313 (let ((commit "7b08691203314612999f0ce2328cdc1161cd6665")
3314 (revision "2"))
1b74b126 3315 (package (inherit gx-guvnor-lv2)
d75e8f5a
RW
3316 (name "gx-switchless-wah-lv2")
3317 (version (string-append "0-" revision "." (string-take commit 9)))
3318 (source (origin
3319 (method git-fetch)
3320 (uri (git-reference
3321 (url "https://github.com/brummer10/GxSwitchlessWah.lv2")
3322 (commit commit)))
3323 (sha256
3324 (base32
cfcef2c2 3325 "04jqfpncmrrqn34p21w4v9m2x5a5wsqwbm4f3byxvq4vcibwxzk2"))
d75e8f5a
RW
3326 (file-name (string-append name "-" version "-checkout"))))
3327 (home-page "https://github.com/brummer10/GxSwitchlessWah.lv2")
3328 (synopsis "Wah emulation with switchless activation")
3329 (description "This package provides the LV2 plugin \"GxSwitchlessWah\",
3330a simulation of an analog Wah pedal with switchless activation."))))
84d53724 3331
a734da86
RW
3332(define-public rkrlv2
3333 (let ((commit "d8c17d3c976107e5c012970276d7cf0aa059f15b")
3334 (revision "1"))
3335 (package
3336 (name "rkrlv2")
3337 (version (git-version "0" revision commit))
3338 (source (origin
3339 (method git-fetch)
3340 (uri (git-reference
3341 (url "https://github.com/ssj71/rkrlv2.git")
3342 (commit commit)))
3343 (sha256
3344 (base32
3345 "035z068rlafb7ibgqf34ck2lm4fab8yzlx41qh061x2xi4hxkvp0"))
3346 (file-name (git-file-name name version))))
3347 (build-system cmake-build-system)
3348 (arguments '(#:tests? #f)) ; there are no tests
3349 (inputs
3350 `(("fftw" ,fftw)
3351 ("libsamplerate" ,libsamplerate)
3352 ("lv2" ,lv2)))
3353 (native-inputs
3354 `(("pkg-config" ,pkg-config)))
3355 (home-page "https://github.com/ssj71/rkrlv2")
3356 (synopsis "Rakarrack effects ported to LV2 plugins")
3357 (description "This package provides the Rakarrack effects as LV2
3358plugins. The ports are done such that hopefully when Rakarrack gets an active
3359maintainer these will get merged into the original project.")
3360 (license license:gpl2))))
3361
84d53724 3362(define-public mod-utilities
fe049d21
RW
3363 (let ((commit "80ea3ea9f52fab7f191671f4810bf90fc955a046")
3364 (revision "2"))
84d53724
RW
3365 (package
3366 (name "mod-utilities")
3367 (version (string-append "0-" revision "." (string-take commit 9)))
3368 (source (origin
3369 (method git-fetch)
3370 (uri (git-reference
3371 (url "https://github.com/moddevices/mod-utilities.git")
3372 (commit commit)))
fe049d21 3373 (file-name (string-append name "-" version "-checkout"))
84d53724
RW
3374 (sha256
3375 (base32
fe049d21 3376 "1v55zmzmlg0ka7341x5lsvb44amy17vk27s669ps1basd1bk5s5v"))))
84d53724
RW
3377 (build-system gnu-build-system)
3378 (arguments
3379 `(#:tests? #f ; there are no tests
3380 #:make-flags
3381 (list (string-append "INSTALL_PATH="
3382 (assoc-ref %outputs "out")
fe049d21
RW
3383 "/lib/lv2")
3384 (string-append "PREFIX=" (assoc-ref %outputs "out"))
3385 "CC=gcc")
84d53724
RW
3386 #:phases
3387 (modify-phases %standard-phases
3388 (delete 'configure))))
3389 (inputs
3390 `(("lv2" ,lv2)))
3391 (home-page "https://github.com/moddevices/mod-utilities")
3392 (synopsis "LV2 utility plugins")
3393 (description "This package provides LV2 audio utility plugins, such as
3394filters, crossovers, simple gain plugins without zipper noise, switch box
3395plugins, a switch trigger, a toggle switch, and a peakmeter.")
3396 (license license:gpl2+))))
d3db5efb 3397
951581a2 3398(define-public ingen
19748414
RW
3399 (let ((commit "cc4a4db33f4d126a07a4a498e053c5fb9a883be3")
3400 (revision "2"))
951581a2
RW
3401 (package
3402 (name "ingen")
3403 (version (string-append "0.0.0-" revision "."
3404 (string-take commit 9)))
3405 (source
3406 (origin
3407 (method git-fetch)
3408 (uri (git-reference
0d0252e4 3409 (url "https://git.drobilla.net/ingen.git")
951581a2
RW
3410 (commit commit)))
3411 (file-name (string-append name "-" version "-checkout"))
3412 (sha256
3413 (base32
19748414 3414 "1wg47vjw9djn99gbnsl2bcwj4xhdid61m4wrbn2nlp797flj91ic"))))
951581a2
RW
3415 (build-system waf-build-system)
3416 (arguments
f9dcf79f
RW
3417 `(#:python ,python-2
3418 #:tests? #f ; no "check" target
951581a2
RW
3419 #:configure-flags (list "--no-webkit")
3420 #:phases
3421 (modify-phases %standard-phases
3422 (add-after 'unpack 'patch-wscript
3423 (lambda* (#:key outputs #:allow-other-keys)
3424 (let ((out (assoc-ref outputs "out")))
3425 (substitute* "wscript"
3426 ;; FIXME: Our version of lv2specgen.py does not behave as
3427 ;; expected. Maybe this requires a development version of
3428 ;; LV2.
3429 (("lv2specgen.py") "touch ingen.lv2/ingen.html; echo")
3430 ;; Add libraries to RUNPATH.
3431 (("^(.+)target.*= 'src/ingen/ingen'," line prefix)
3432 (string-append prefix
3433 "linkflags=[\"-Wl,-rpath="
3434 out "/lib" "\"]," line)))
3435 (substitute* '("src/wscript"
3436 "src/server/wscript")
3437 ;; Add libraries to RUNPATH.
3438 (("bld.env.PTHREAD_LINKFLAGS" line)
3439 (string-append line
3440 " + [\"-Wl,-rpath=" out "/lib" "\"]")))
3441 (substitute* "src/client/wscript"
3442 ;; Add libraries to RUNPATH.
3443 (("^(.+)target.*= 'ingen_client'," line prefix)
3444 (string-append prefix
3445 "linkflags=[\"-Wl,-rpath="
3446 out "/lib" "\"]," line)))
3447 (substitute* "src/gui/wscript"
3448 ;; Add libraries to RUNPATH.
3449 (("^(.+)target.* = 'ingen_gui.*" line prefix)
3450 (string-append prefix
3451 "linkflags=[\"-Wl,-rpath="
3452 out "/lib" "\"]," line))))
3453 #t)))))
3454 (inputs
3455 `(("boost" ,boost)
3456 ("python-rdflib" ,python-rdflib)
3457 ("python" ,python)
3458 ("jack" ,jack-1)
a2467954 3459 ("lv2" ,lv2)
951581a2
RW
3460 ("lilv" ,lilv)
3461 ("raul" ,raul-devel)
3462 ("ganv" ,ganv-devel)
3463 ("suil" ,suil)
3464 ("serd" ,serd)
3465 ("sord" ,sord)
3466 ("sratom" ,sratom)
3467 ("gtkmm" ,gtkmm-2)))
3468 (native-inputs
3469 `(("pkg-config" ,pkg-config)
3470 ("python-pygments" ,python-pygments)))
0d0252e4 3471 (home-page "https://drobilla.net/software/ingen")
951581a2
RW
3472 (synopsis "Modular audio processing system")
3473 (description "Ingen is a modular audio processing system for JACK and
3474LV2 based systems. Ingen is built around LV2 technology and a strict
3475separation of engine from user interface. The engine is controlled
3476exclusively through a protocol, and can execute as a headless process, with an
3477in-process GUI, or as an LV2 plugin. The GUI can run as a program which
3478communicates over a Unix or TCP/IP socket, or as an embeddable LV2 GUI which
3479communicates via LV2 ports. Any saved Ingen graph can be loaded as an LV2
3480plugin on any system where Ingen is installed. This allows users to visually
3481develop custom plugins for use in other applications without programming.")
3482 (license license:agpl3+))))
3483
b3410b44
RW
3484(define-public qmidiarp
3485 (package
3486 (name "qmidiarp")
b6313997 3487 (version "0.6.5")
b3410b44
RW
3488 (source (origin
3489 (method url-fetch)
3490 (uri (string-append "mirror://sourceforge/qmidiarp/qmidiarp/"
3491 version "/qmidiarp-" version ".tar.bz2"))
3492 (sha256
3493 (base32
b6313997 3494 "043yh1p0rrbj1v840y27529m9260g55gvh1km8az4jxy7mns58r2"))))
b3410b44
RW
3495 (build-system gnu-build-system)
3496 (arguments
3497 `(#:configure-flags
3498 (list "--enable-qt5"
3499 "CXXFLAGS=-std=gnu++11")))
3500 (inputs
3501 `(("qtbase" ,qtbase)
3502 ("alsa-lib" ,alsa-lib)
3503 ("jack" ,jack-1)
3504 ("liblo" ,liblo)
3505 ("lv2" ,lv2)))
3506 (native-inputs
3507 `(("pkg-config" ,pkg-config)
3508 ("qttools" ,qttools)))
3509 (home-page "http://qmidiarp.sourceforge.net/")
3510 (synopsis "MIDI arpeggiator")
3511 (description "QMidiArp is an advanced MIDI arpeggiator, programmable step
3512sequencer and LFO. It can hold any number of arpeggiator, sequencer, or LFO
3513modules running in parallel.")
3514 (license license:gpl2+)))
3515
ff49437d
RW
3516(define-public qmidiroute
3517 (package
3518 (name "qmidiroute")
3519 (version "0.4.0")
3520 (source (origin
3521 (method url-fetch)
3522 (uri (string-append "mirror://sourceforge/alsamodular/QMidiRoute/"
3523 version "/qmidiroute-" version ".tar.bz2"))
3524 (sha256
3525 (base32
3526 "19v1ppbglgl3z9v7xdqc0k33w71cqq8a7d6ihvfs7iz77dygrih9"))))
3527 (build-system gnu-build-system)
3528 (arguments
3529 `(#:configure-flags
3530 (list "--enable-qt5"
3531 "CXXFLAGS=-std=gnu++11")))
3532 (inputs
3533 `(("qtbase" ,qtbase)
3534 ("alsa-lib" ,alsa-lib)))
3535 (native-inputs
3536 `(("pkg-config" ,pkg-config)
3537 ("qttools" ,qttools)))
3538 (home-page "http://alsamodular.sourceforge.net/")
3539 (synopsis "MIDI event router and filter")
3540 (description "QMidiRoute is a MIDI event router and filter. MIDI note,
3541control change, program change and pitch bend events are logged, and can be
3542filtered, redirected and transformed into other events according to MIDI maps
3543defined as tabs in the main control surface.")
3544 (license license:gpl2+)))
3545
5a66e25c
RW
3546(define-public seq24
3547 (package
3548 (name "seq24")
3549 (version "0.9.3")
3550 (source (origin
3551 (method url-fetch)
3552 (uri (string-append "https://launchpad.net/seq24/trunk/"
3553 version "/+download/seq24-"
3554 version ".tar.bz2"))
3555 (sha256
3556 (base32
3557 "12dphdhnvfk1k0vmagi1v2lhyxjyj1j3cz6ksjw0ydcvid1x8ap2"))
3558 (patches (search-patches "seq24-rename-mutex.patch"))))
3559 (build-system gnu-build-system)
3560 (arguments
3561 `(#:configure-flags
3562 (list "CXXFLAGS=-std=gnu++11")))
3563 (inputs
3564 `(("gtkmm" ,gtkmm-2)
3565 ("alsa-lib" ,alsa-lib)
3566 ("jack" ,jack-1)
3567 ("lash" ,lash)))
3568 (native-inputs
3569 `(("pkg-config" ,pkg-config)))
3570 (home-page "https://edge.launchpad.net/seq24/")
3571 (synopsis "Real-time MIDI sequencer")
3572 (description "Seq24 is a real-time MIDI sequencer. It was created to
3573provide a very simple interface for editing and playing MIDI loops.")
3574 (license license:gpl2+)))
3575
d3db5efb
LF
3576(define-public python-discogs-client
3577 (package
3578 (name "python-discogs-client")
3579 (version "2.2.1")
3580 (source (origin
3581 (method url-fetch)
3582 (uri (pypi-uri "discogs-client" version))
3583 (sha256
3584 (base32
3585 "053ld2psh0yj3z0kg6z5bn4y3cr562m727494n0ayhgzbkjbacly"))))
3586 (build-system python-build-system)
3587 (propagated-inputs
3588 `(("python-oauthlib" ,python-oauthlib)
3589 ("python-requests" ,python-requests)))
3590 (native-inputs
3591 `(("python-six" ,python-six)))
3592 (home-page "https://github.com/discogs/discogs_client")
3593 (synopsis "Official Python client for the Discogs API")
3594 (description "This is the official Discogs API client for Python. It enables
3595you to query the Discogs database for information on artists, releases, labels,
3596users, Marketplace listings, and more. It also supports OAuth 1.0a
3597authorization, which allows you to change user data such as profile information,
3598collections and wantlists, inventory, and orders.")
80983df3 3599 (license license:bsd-2)))
d3db5efb
LF
3600
3601(define-public python2-discogs-client
80983df3 3602 (package-with-python2 python-discogs-client))
a4f05b46 3603
3604(define-public libsmf
3605 (package
3606 (name "libsmf")
3607 (version "1.3")
3608 (source
3609 (origin
3610 (method url-fetch)
3611 ;; SF download page says development moved, but the link it points to
3612 ;; is gone (https://github.com/nilsgey/libsmf). Someone else adopted
3613 ;; it but made no release so far (https://github.com/stump/libsmf).
3614 (uri (string-append "mirror://sourceforge/libsmf/libsmf/"
3615 version "/libsmf-" version ".tar.gz"))
3616 (sha256
3617 (base32
3618 "16c0n40h0r56gzbh5ypxa4dwp296dan3jminml2qkb4lvqarym6k"))))
3619 (build-system gnu-build-system)
3620 (outputs '("out"
3621 "static")) ; 88KiB of .a files
3622 (arguments
3623 `(#:phases
3624 (modify-phases %standard-phases
3625 (add-after 'install 'move-static-libraries
3626 (lambda* (#:key outputs #:allow-other-keys)
3627 ;; Move static libraries to the "static" output.
3628 (let* ((out (assoc-ref outputs "out"))
3629 (lib (string-append out "/lib"))
3630 (static (assoc-ref outputs "static"))
3631 (slib (string-append static "/lib")))
3632 (mkdir-p slib)
3633 (for-each (lambda (file)
3634 (install-file file slib)
3635 (delete-file file))
3636 (find-files lib "\\.a$"))
3637 #t))))))
3638 (inputs
3639 `(("readline" ,readline)
3640 ("glib" ,glib)))
3641 (native-inputs
3642 `(("doxygen" ,doxygen)
3643 ("pkg-config" ,pkg-config)))
3644 (home-page "http://libsmf.sourceforge.net/")
3645 (synopsis "Standard MIDI File format library")
3646 (description
3647 "LibSMF is a C library for handling SMF (\"*.mid\") files. It transparently handles
3648conversions between time and pulses, tempo map handling and more. The only dependencies
3649are a C compiler and glib. Full API documentation and examples are included.")
3650 (license license:bsd-2)))
a42619e5
RF
3651
3652(define-public lmms
3653 (package
3654 (name "lmms")
3655 (version "1.1.3")
3656 (source
3657 (origin
3a0592ae
RW
3658 (method git-fetch)
3659 (uri (git-reference
3660 (url "https://github.com/LMMS/lmms.git")
3661 (commit (string-append "v" version))))
3662 (file-name (git-file-name name version))
a42619e5
RF
3663 (sha256
3664 (base32
3a0592ae 3665 "03hhymc6d73fa3wbcqb7rm1l03zkw605k5i9kvkvjmv488bqh3pd"))))
a42619e5
RF
3666 (build-system cmake-build-system)
3667 (arguments
3668 `(#:tests? #f ; no tests
3669 #:phases
3670 (modify-phases %standard-phases
ab2ccf4c
KK
3671 (add-before 'configure 'set-ldflags
3672 (lambda* (#:key outputs #:allow-other-keys)
3673 (setenv "LDFLAGS"
3674 (string-append
3675 "-Wl,-rpath=\""
3676 (assoc-ref outputs "out") "/lib/lmms"
3677 ":"
3678 (assoc-ref outputs "out") "/lib/lmms/ladspa"
3679 "\""))
3680 #t))
3681 (add-before 'configure 'remove-Werror
3682 (lambda _
3683 (substitute* "CMakeLists.txt"
3684 (("SET\\(WERROR_FLAGS \"\\$\\{WERROR_FLAGS\\} -Werror")
3685 "SET(WERROR_FLAGS \"${WERROR_FLAGS}"))
3686 #t))
3687 (add-before 'reset-gzip-timestamps 'make-manpages-writable
3688 (lambda* (#:key outputs #:allow-other-keys)
3689 (map (lambda (file)
3690 (make-file-writable file))
3691 (find-files (string-append (assoc-ref outputs "out")
3692 "/share/man")
3693 ".*\\.gz$"))
3694 #t)))))
a42619e5
RF
3695 (native-inputs
3696 `(("pkg-config" ,pkg-config)))
3697 (inputs
3698 `(("sdl" ,sdl)
3699 ("qt" ,qt-4)
3700 ("fltk" ,fltk)
3701 ("libogg" ,libogg)
3702 ("libsamplerate" ,libsamplerate)
9b6dc31b 3703 ("fluidsynth" ,fluidsynth-1) ;XXX: try using 2.x when updating
a42619e5
RF
3704 ("libvorbis" ,libvorbis)
3705 ("alsa-lib" ,alsa-lib)
3706 ("portaudio" ,portaudio)
3707 ("ladspa" ,ladspa)
3708 ("libsndfile1" ,libsndfile)
3709 ("libxft" ,libxft)
3710 ("freetype2" ,freetype)
3711 ("fftw3f" ,fftwf)))
3712 (home-page "https://lmms.io/")
3713 (synopsis "Music composition tool")
3714 (description "LMMS is a digital audio workstation. It includes tools for sequencing
3715melodies and beats and for mixing and arranging songs. LMMS includes instruments based on
3716audio samples and various soft sythesizers. It can receive input from a MIDI keyboard.")
3717 (license license:gpl2+)))
a7a7186c
NG
3718
3719(define-public musescore
3720 (package
3721 (name "musescore")
1a2fa342 3722 (version "3.1")
a7a7186c 3723 (source (origin
545ceac8
NG
3724 (method git-fetch)
3725 (uri (git-reference
3726 (url "https://github.com/musescore/MuseScore.git")
3727 (commit (string-append "v" version))))
3728 (file-name (git-file-name name version))
a7a7186c
NG
3729 (sha256
3730 (base32
1a2fa342 3731 "07xkn8gnnqzhj9cn1li5qpm2rfm86bmxbbfd76i1jx4v999icn0j"))
a7a7186c
NG
3732 (modules '((guix build utils)))
3733 (snippet
3734 ;; Un-bundle OpenSSL and remove unused libraries.
3735 '(begin
3736 (substitute* "thirdparty/kQOAuth/CMakeLists.txt"
3737 (("-I \\$\\{PROJECT_SOURCE_DIR\\}/thirdparty/openssl/include ")
3738 ""))
3739 (substitute* "thirdparty/kQOAuth/kqoauthutils.cpp"
3740 (("#include <openssl/.*") ""))
3741 (for-each delete-file-recursively
3742 '("thirdparty/freetype"
3743 "thirdparty/openssl"
3744 "thirdparty/portmidi"))
8d611ef0 3745 #t))))
11d44d0b 3746 (build-system cmake-build-system)
a7a7186c 3747 (arguments
11d44d0b 3748 `(#:configure-flags
8d611ef0 3749 `("-DBUILD_CRASH_REPORTER=OFF"
11d44d0b 3750 "-DBUILD_WEBENGINE=OFF"
8d611ef0
NG
3751 "-DDOWNLOAD_SOUNDFONT=OFF"
3752 "-DUSE_SYSTEM_FREETYPE=ON")
11d44d0b
NG
3753 ;; There are tests, but no simple target to run. The command used to
3754 ;; run them is:
a7a7186c
NG
3755 ;;
3756 ;; make debug && sudo make installdebug && cd \
3757 ;; build.debug/mtest && make && ctest
3758 ;;
3759 ;; Basically, it requires to start a whole new build process.
3760 ;; So we simply skip them.
11d44d0b 3761 #:tests? #f))
a7a7186c
NG
3762 (inputs
3763 `(("alsa-lib" ,alsa-lib)
3764 ("freetype" ,freetype)
3765 ("gtk+-bin" ,gtk+ "bin") ;for gtk-update-icon-cache
3766 ("jack" ,jack-1)
3767 ("lame" ,lame)
3768 ("libogg" ,libogg)
3769 ("libsndfile" ,libsndfile)
3770 ("libvorbis" ,libvorbis)
3771 ("portaudio" ,portaudio)
b3891a25 3772 ("portmidi" ,portmidi)
a7a7186c
NG
3773 ("pulseaudio" ,pulseaudio)
3774 ("qtbase" ,qtbase)
3775 ("qtdeclarative" ,qtdeclarative)
3776 ("qtscript" ,qtscript)
3777 ("qtsvg" ,qtsvg)
a7a7186c
NG
3778 ("qtxmlpatterns" ,qtxmlpatterns)))
3779 (native-inputs
11d44d0b 3780 `(("pkg-config" ,pkg-config)
a7a7186c
NG
3781 ("qttools" ,qttools)))
3782 (synopsis "Music composition and notation software")
3783 (description "MuseScore is a music score typesetter. Its main purpose is
3784the creation of high-quality engraved musical scores in a WYSIWYG environment.
3785
3786It supports unlimited staves, linked parts and part extraction, tablature,
3787MIDI input, percussion notation, cross-staff beaming, automatic transposition,
3788lyrics (multiple verses), fretboard diagrams, and in general everything
3789commonly used in sheet music. Style options and style sheets to change the
3790appearance and layout are provided.
3791
3792MuseScore can also play back scores through the built-in sequencer and SoundFont
3793sample library.")
3794 (home-page "https://musescore.org")
3795 (license license:gpl2)))
2434f5ce 3796
43188faf
RW
3797(define-public muse-sequencer
3798 (package
3799 (name "muse-sequencer")
3800 (version "3.0.0")
3801 (source (origin
3802 (method git-fetch)
3803 (uri (git-reference
3804 (url "https://github.com/muse-sequencer/muse.git")
3805 (commit (string-append "muse_"
3806 (string-map (lambda (c)
3807 (if (char=? c #\.)
3808 #\_ c)) version)))))
3809 (file-name (string-append name "-" version "-checkout"))
3810 (sha256
3811 (base32
3812 "1nninz8qyqlxxjdnrm79y3gr3056pga9l2fsqh674jd3cjvafya3"))))
3813 (build-system cmake-build-system)
3814 (arguments
3815 `(#:tests? #f ; there is no test target
3816 #:configure-flags
3817 (list "-DENABLE_LV2_SUPPLIED=OFF"
3818 "-DENABLE_RTAUDIO=OFF" ; FIXME: not packaged
3819 "-DENABLE_INSTPATCH=OFF" ; FIXME: not packaged
3820 "-DENABLE_VST_NATIVE=OFF")
3821 #:phases
3822 (modify-phases %standard-phases
3823 (add-after 'unpack 'chdir
3824 (lambda _ (chdir "muse3"))))))
3825 (inputs
3826 `(("alsa-lib" ,alsa-lib)
3827 ("lash" ,lash)
3828 ("jack" ,jack-1)
3829 ("liblo" ,liblo)
3830 ("dssi" ,dssi)
3831 ("ladspa" ,ladspa)
3832 ("lv2" ,lv2)
3833 ("lilv" ,lilv)
3834 ("sord" ,sord)
3835 ("libsndfile" ,libsndfile)
3836 ("libsamplerate" ,libsamplerate)
3837 ("fluidsynth" ,fluidsynth)
3838 ("pcre" ,pcre)
3839 ("qtbase" ,qtbase)
3840 ("qtsvg" ,qtsvg)))
3841 (native-inputs
3842 `(("pkg-config" ,pkg-config)
3843 ("qttools" ,qttools)))
3844 (home-page "http://muse-sequencer.org")
3845 (synopsis "MIDI/Audio sequencer")
3846 (description "MusE is a MIDI/Audio sequencer with recording and editing
3847capabilities. Its audio sequencer supports the LADSPA, DSSI, and LV2 audio
3848plugin formats; the MIDI sequencer provides a piano roll, a drum editor, a
3849list view, and a score editor. MusE aims to be a complete multitrack virtual
3850studio.")
3851 (license license:gpl2+)))
3852
2434f5ce
DM
3853(define-public dssi
3854 (package
3855 (name "dssi")
3856 (version "1.1.1")
3857 (source (origin
3858 (method url-fetch)
3859 (uri (string-append
3860 "mirror://sourceforge/dssi/dssi/" version
3861 "/dssi-" version ".tar.gz"))
3862 (sha256
3863 (base32
3864 "0kl1hzhb7cykzkrqcqgq1dk4xcgrcxv0jja251aq4z4l783jpj7j"))))
3865 (build-system gnu-build-system)
3866 (inputs
3867 `(("alsa-lib" ,alsa-lib)
0e78801a 3868 ("jack" ,jack-1)
2434f5ce
DM
3869 ("ladspa" ,ladspa)
3870 ("libsamplerate" ,libsamplerate)
3871 ("libsndfile" ,libsndfile)
3872 ("liblo" ,liblo)))
3873 (native-inputs
3874 `(("pkg-config" ,pkg-config)))
3875 (synopsis "Audio plugin API for soft synths and effects")
3876 (description "DSSI is a plugin API for software instruments with user
3877interfaces, permitting them to be hosted in-process by audio applications.
3878It is intended to be simple, GUI-toolkit-agnostic, and slightly biased
3879towards familiarity with MIDI. The DSSI distribution package contains
3880a JACK/ALSA-sequencer reference host and some plugins as well as the
3881specification and header.")
3882 (home-page "http://dssi.sourceforge.net/")
3883 ;; The DSSI interface is LGPL2.1+, some tests and examples are GPL2+.
3884 ;; The vast majority of examples are in the public domain.
3885 (license (list license:lgpl2.1+ license:gpl2+))))
9bc38f28
DM
3886
3887(define-public rosegarden
3888 (package
3889 (name "rosegarden")
0d5101c3 3890 (version "18.12")
9bc38f28
DM
3891 (source (origin
3892 (method url-fetch)
3893 (uri (string-append
3894 "mirror://sourceforge/rosegarden/rosegarden/"
3895 version "/rosegarden-" version ".tar.bz2"))
3896 (sha256
3897 (base32
0d5101c3 3898 "15i9fm0vkn3wsgahaxqi1j5zs0wc0j3wdwml0x49084gk2p328vb"))))
9bc38f28
DM
3899 (build-system cmake-build-system)
3900 (arguments
0d5101c3 3901 `(#:configure-flags '("-DCMAKE_BUILD_TYPE=Release")
9bc38f28
DM
3902 #:phases
3903 (modify-phases %standard-phases
3904 (add-after 'unpack 'patch-tests
3905 (lambda _
3906 (substitute* "CMakeLists.txt"
3907 (("BUILD_TESTING OFF") "BUILD_TESTING ON")
3908 ;; Make tests work.
3909 ((" -fvisibility=hidden") ""))
3910 #t))
3911 (add-after 'unpack 'fix-references
3912 (lambda* (#:key inputs #:allow-other-keys)
3913 (substitute* "src/gui/general/ProjectPackager.cpp"
3914 (("\"flac\\>")
3915 (string-append "\"" (assoc-ref inputs "flac") "/bin/flac"))
3916 (("\"wavpack\\>")
3917 (string-append "\"" (assoc-ref inputs "wavpack") "/bin/wavpack"))
3918 (("\"wvunpack\\>")
3919 (string-append "\"" (assoc-ref inputs "wavpack") "/bin/wvunpack"))
3920 (("\"bash\\>")
3921 (string-append "\"" (assoc-ref inputs "bash") "/bin/bash"))
3922 (("\"tar\\>")
3923 (string-append "\"" (assoc-ref inputs "tar") "/bin/tar")))
3924 (substitute* "src/gui/general/LilyPondProcessor.cpp"
3925 (("\"convert-ly\\>")
3926 (string-append "\"" (assoc-ref inputs "lilypond") "/bin/convert-ly"))
3927 (("\"lilypond\\>")
3928 (string-append "\"" (assoc-ref inputs "lilypond") "/bin/lilypond")))
3929 #t))
3930 (add-after 'unpack 'make-reproducible
3931 (lambda _
3932 ;; Prevent Last-Modified from being written.
3933 ;; The "*.qm" files that are used in locale.qrc would have a new
3934 ;; mtime otherwise that is written into qrc_locale.cpp in the
3935 ;; end - except when we disable it.
3936 (substitute* "src/CMakeLists.txt"
3937 (("COMMAND [$][{]QT_RCC_EXECUTABLE[}]")
3938 "COMMAND ${QT_RCC_EXECUTABLE} --format-version 1")
3939 ;; Extraneous.
3940 ;(("qt5_add_resources[(]rg_SOURCES ../data/data.qrc[)]")
3941 ; "qt5_add_resources(rg_SOURCES ../data/data.qrc OPTIONS --format-version 1)")
3942 )
3943 ;; Make hashtable traversal order predicable.
3944 (setenv "QT_RCC_TEST" "1") ; important
3945 #t))
3946 (add-before 'check 'prepare-check
3947 (lambda _
3948 (setenv "QT_QPA_PLATFORM" "offscreen")
3949 ;; Tests create files in $HOME/.local/share/rosegarden .
3950 (mkdir-p "/tmp/foo")
3951 (setenv "HOME" "/tmp/foo")
9bf98520 3952 (setenv "XDG_RUNTIME_DIR" "/tmp/foo")
9bc38f28
DM
3953 #t)))))
3954 (inputs
3955 `(("alsa-lib" ,alsa-lib)
3956 ("bash" ,bash)
3957 ("dssi" ,dssi)
3958 ("flac" ,flac)
3959 ("fftwf" ,fftwf)
b94f250e 3960 ("jack" ,jack-1)
9bc38f28
DM
3961 ("ladspa" ,ladspa)
3962 ("liblo" ,liblo)
3963 ("libsamplerate" ,libsamplerate)
3964 ("lilypond" ,lilypond)
3965 ("lrdf" ,lrdf)
3966 ("qtbase" ,qtbase)
3967 ("tar" ,tar)
3968 ("lirc" ,lirc)
3969 ("wavpack" ,wavpack)
3970 ("zlib" ,zlib)))
3971 (native-inputs
3972 `(("pkg-config" ,pkg-config)
3973 ("qtlinguist" ,qttools)))
3974 (synopsis "Music composition and editing environment based around a MIDI
3975sequencer")
3976 (description "Rosegarden is a music composition and editing environment
3977based around a MIDI sequencer that features a rich understanding of music
3978notation and includes basic support for digital audio.")
9bf98520 3979 (home-page "https://www.rosegardenmusic.com/")
9bc38f28 3980 (license license:gpl2)))
30655652 3981
643817e4 3982(define-public patchmatrix
2394afa4
RW
3983 ;; There have been no releases for more than a year.
3984 (let ((commit "a0b0b1e791f4574d5abd059cfe1819c71e8b18d5")
3985 (revision "1"))
3986 (package
3987 (name "patchmatrix")
3988 (version (git-version "0.12.0" revision commit))
3989 (source (origin
3990 (method git-fetch)
3991 (uri (git-reference
3992 (url "https://github.com/OpenMusicKontrollers/patchmatrix.git")
3993 (commit commit)))
3994 (file-name (string-append "patchmatrix-" version "-checkout"))
3995 (sha256
3996 (base32
3997 "0pph4ra7aci3rbpqvvr564pi16vxrk448bmvp8985cd9lbjlrp3m"))))
3998 (build-system meson-build-system)
3999 (arguments
4000 '(#:tests? #f ; no test target
4001 #:phases
4002 (modify-phases %standard-phases
4003 (add-before 'reset-gzip-timestamps 'make-gzip-archive-writable
4004 (lambda* (#:key outputs #:allow-other-keys)
4005 (map make-file-writable
4006 (find-files (assoc-ref outputs "out") ".*\\.gz$"))
4007 #t)))))
4008 (inputs
4009 `(("jack" ,jack-1)
4010 ("lv2" ,lv2)
4011 ("mesa" ,mesa)))
4012 (native-inputs
4013 `(("pkg-config" ,pkg-config)))
4014 (home-page "https://github.com/OpenMusicKontrollers/patchmatrix")
4015 (synopsis "Simple JACK patch bay")
4016 (description "PatchMatrix is a patch bay for the JACK audio connection
643817e4
RW
4017kit. It provides a patch bay in flow matrix style for audio, MIDI, CV, and
4018OSC connections.")
2394afa4 4019 (license license:artistic2.0))))
643817e4 4020
30655652
RW
4021(define-public sorcer
4022 (package
4023 (name "sorcer")
4024 (version "1.1.3")
4025 (source (origin
4026 (method url-fetch)
4027 (uri (string-append "https://github.com/openAVproductions/"
4028 "openAV-Sorcer/archive/release-"
4029 version ".tar.gz"))
4030 (file-name (string-append name "-" version ".tar.gz"))
4031 (sha256
4032 (base32
4033 "07iyqj28wm0xc4arrq893bm12xjpz65db7ynrlmf6w8krg8wjmd0"))))
4034 (build-system cmake-build-system)
4035 (arguments
4036 `(#:tests? #f ; no tests included
4037 #:phases
4038 (modify-phases %standard-phases
e5af1f4a
EF
4039 (add-after 'unpack 'remove-architecture-specific-flags
4040 (lambda _
4041 (substitute* "CMakeLists.txt"
4042 (("-msse2 -mfpmath=sse") ""))
4043 #t))
30655652
RW
4044 (add-after 'unpack 'build-faust-sources
4045 (lambda* (#:key inputs #:allow-other-keys)
4046 (with-directory-excursion "faust"
4047 (delete-file "main.cpp")
d7e24652
RW
4048 (invoke "faust" "-i"
4049 "-a" "lv2synth.cpp"
4050 "-o" "main.cpp" "main.dsp")))))))
30655652
RW
4051 (inputs
4052 `(("boost" ,boost)
4053 ("lv2" ,lv2)
4054 ("ntk" ,ntk)))
4055 (native-inputs
4056 `(("faust" ,faust)
4057 ("pkg-config" ,pkg-config)))
4058 (home-page "http://openavproductions.com/sorcer/")
4059 (synopsis "Wavetable LV2 plugin synth")
4060 (description "Sorcer is a wavetable LV2 plugin synthesizer, targeted at
4061the electronic or dubstep genre.")
4062 (license license:gpl3+)))
60b7ed9c 4063
f7ce2134
RW
4064(define-public sonivox-eas
4065 (package
4066 (name "sonivox-eas")
4067 (version "1.1.0")
4068 (source (origin
4069 (method git-fetch)
4070 (uri (git-reference
4071 (url "https://github.com/pedrolcl/Linux-SonivoxEas.git")
4072 (commit (string-append "v" version))))
4073 (file-name (string-append name "-" version "-checkout"))
4074 (sha256
4075 (base32
4076 "0l9gs00p5g4k4qy6i7nv1mfi2n2wnsycwjrgrh9hxzam4irf2mw2"))))
4077 (build-system cmake-build-system)
4078 (arguments '(#:tests? #f)) ; there are no tests
4079 (inputs
4080 `(("alsa-lib" ,alsa-lib)
4081 ("drumstick" ,drumstick)
4082 ("pulseaudio" ,pulseaudio)
4083 ("qtbase" ,qtbase)))
4084 (native-inputs
4085 `(("pkg-config" ,pkg-config)))
4086 (home-page "https://github.com/pedrolcl/Linux-SonivoxEas")
4087 (synopsis "MIDI synthesizer library")
4088 (description "This project is a real time General MIDI synthesizer based
4089on the Sonivox EAS Synthesizer by Google. It does not need external
4090soundfonts, using embedded samples instead.")
4091 ;; Sonivox is released under the ASL2.0; the rest of the code is under
4092 ;; GPLv2+.
4093 (license (list license:gpl2+ license:asl2.0))))
92b36e3a
RW
4094
4095(define-public whysynth
4096 (package
4097 (name "whysynth")
4098 (version "20170701")
4099 (source (origin
4100 (method url-fetch)
4101 (uri (string-append "http://smbolton.com/whysynth/whysynth-"
4102 version ".tar.bz2"))
4103 (sha256
4104 (base32
4105 "02qbn0hbvn1iym4zxv35b201blg31yjpgh71h8db0j5zls2xc0m6"))))
4106 (build-system gnu-build-system)
4107 (inputs
4108 `(("dssi" ,dssi)
4109 ("liblo" ,liblo)
4110 ("fftwf" ,fftwf)
4111 ("gtk+" ,gtk+-2)
4112 ("ladspa" ,ladspa)
4113 ("alsa-lib" ,alsa-lib)))
4114 (native-inputs
4115 `(("pkg-config" ,pkg-config)))
4116 (home-page "http://smbolton.com/whysynth.html")
4117 (synopsis "DSSI software synthesizer")
4118 (description "WhySynth is a versatile softsynth which operates as a plugin
4119for the DSSI Soft Synth Interface. A brief list of features:
4120
4121@enumerate
4122@item 4 oscillators, 2 filters, 3 LFOs, and 5 envelope generators per voice.
4123@item 11 oscillator modes: minBLEP, wavecycle, chorused wavecycle,
4124 asynchronous granular, three FM modes, waveshaper, noise, PADsynth, and phase
4125 distortion.
4126@item 10 filter modes.
4127@item flexible modulation and mixdown options, plus effects.
4128@end enumerate
4129")
4130 (license license:gpl2+)))
6b445c57 4131
4132(define-public libdiscid
4133 (package
4134 (name "libdiscid")
4135 (version "0.6.2")
4136 (source
4137 (origin
4138 (method url-fetch)
4139 (uri (string-append
4140 "http://ftp.musicbrainz.org/pub/musicbrainz/libdiscid/libdiscid-"
4141 version ".tar.gz"))
4142 (sha256
4143 (base32
4144 "1f9irlj3dpb5gyfdnb1m4skbjvx4d4hwiz2152f83m0d9jn47r7r"))))
4145 (arguments `(#:test-target "check"))
4146 (build-system cmake-build-system)
4147 (home-page "https://musicbrainz.org/doc/libdiscid")
4148 (synopsis "Disc id reader library")
4149 (description "libdiscid is a C library for creating MusicBrainz and freedb
4150disc IDs from audio CDs. It reads a CD's table of contents (TOC) and generates
4151an identifier which can be used to lookup the CD at MusicBrainz. Additionally,
4152it provides a submission URL for adding the disc ID to the database and gathers
4153ISRCs and the MCN (=UPC/EAN) from disc.")
4154 (license license:lgpl2.1+)))
1ea29aa0 4155
1331a6c0
GH
4156(define-public python-discid
4157 (package
4158 (name "python-discid")
4159 (version "1.1.1")
4160 (source
4161 (origin
4162 (method url-fetch)
4163 (uri (pypi-uri "discid" version))
4164 (sha256
4165 (base32
4166 "1fgp67nhqlbvhhwrcxq5avil7alpzw4s4579hlyvxzbphdnbz8vq"))))
4167 (build-system python-build-system)
4168 (inputs
4169 `(("libdiscid" ,libdiscid)))
4170 (arguments
4171 `(#:phases
4172 (modify-phases %standard-phases
4173 (add-before 'build 'set-libdiscid
4174 ;; Set path of libdiscid
4175 (lambda* (#:key inputs #:allow-other-keys)
4176 (let ((discid (assoc-ref inputs "libdiscid")))
4177 (substitute* "discid/libdiscid.py"
4178 (("lib_name = (.*)$" all name)
4179 (string-append "lib_name = \"" discid
4180 "/lib/libdiscid.so.0\"\n")))
4181 #t))))))
4182 (home-page "https://python-discid.readthedocs.io/")
4183 (synopsis "Python bindings for Libdiscid")
4184 (description
4185 "This package provides Python bindings for the Libdiscid library. The
4186main purpose is the calculation of @url{https://musicbrainz.org/doc/Disc%20ID,
4187Disc IDs} for use with the MusicBrainz database. Additionally the disc
4188@dfn{Media Catalog Number} (MCN) and track @dfn{International Standard
4189Recording Code} (ISRC) can be extracted.}")
4190 (license license:lgpl3+)))
4191
1ea29aa0 4192(define-public libmusicbrainz
4193 (package
4194 (name "libmusicbrainz")
4195 (version "5.1.0")
4196 (source
4197 (origin
4198 (method url-fetch)
4199 (uri (string-append
4200 "https://github.com/metabrainz/libmusicbrainz/releases/download/release-"
4201 version "/libmusicbrainz-" version ".tar.gz"))
4202 (sha256
4203 (base32
8c71a52c 4204 "0ikb9igyyk28jm34raxfzkw2qyn4nzzwsymdyprp7cmvi6g2ajb7"))))
1ea29aa0 4205 (build-system cmake-build-system)
69cb939e
RW
4206 (arguments
4207 `(#:phases
4208 (modify-phases %standard-phases
4209 (replace 'check
4210 (lambda _
4211 ;; requires network connections
4212 ;; (invoke "tests/mbtest")
4213 (invoke "tests/ctest")
4214 #t)))))
1ea29aa0 4215 (inputs `(("neon" ,neon)
4216 ("libxml2" ,libxml2)))
4217 (native-inputs `(("pkg-config" ,pkg-config)))
4218 (home-page "https://musicbrainz.org/doc/libmusicbrainz")
4219 (synopsis "MusicBrainz client library")
4220 (description "The MusicBrainz Client Library (libmusicbrainz), also known as
4221mb_client, is a development library geared towards developers who wish to add
4222MusicBrainz lookup capabilities to their applications.")
4223 (license license:lgpl2.1+)))
87d1b7b0 4224
b0c2c5ab
LC
4225(define-public perl-musicbrainz-discid
4226 (package
4227 (name "perl-musicbrainz-discid")
4228 (version "0.04")
4229 (source (origin
4230 (method url-fetch)
4231 (uri (string-append
4232 "mirror://cpan/authors/id/N/NJ/NJH/MusicBrainz-DiscID-"
4233 version ".tar.gz"))
4234 (sha256
4235 (base32
4236 "1i4qk1qfcmxdibqkyfjrrjdq2zk42vjcz590qgiyc47fi9p6xx1j"))))
4237 (build-system perl-build-system)
4238 (native-inputs `(("pkg-config" ,pkg-config)
4239 ("which" ,which)))
4240 (inputs `(("libdiscid" ,libdiscid)))
4241 (home-page "https://metacpan.org/release/MusicBrainz-DiscID")
4242 (synopsis "Perl interface to the MusicBrainz libdiscid library")
4243 (description
4244 "The @code{MusicBrainz::DiscID} module is a Perl interface to the
4245MusicBrainz libdiscid library, allowing you to manipulate digital audio
4246compact disc (CDDA) identifiers.")
4247 (license license:gpl2)))
4248
b2961dda
LC
4249(define-public perl-webservice-musicbrainz
4250 (package
4251 (name "perl-webservice-musicbrainz")
b0842a8e 4252 (version "1.0.5")
b2961dda
LC
4253 (source (origin
4254 (method url-fetch)
4255 (uri (string-append
4256 "mirror://cpan/authors/id/B/BF/BFAIST/WebService-MusicBrainz-"
4257 version ".tar.gz"))
4258 (sha256
4259 (base32
b0842a8e 4260 "16chs1l58cf000d5kalkyph3p31ci73p1rlyx98mfv10d2cq6fsj"))))
b2961dda
LC
4261 (build-system perl-build-system)
4262 (arguments
4263 ;; Tests try to connect to http://musicbrainz.org.
4264 '(#:tests? #f))
4265 (native-inputs
4266 `(("perl-module-build" ,perl-module-build)))
4267 (propagated-inputs
4268 `(("perl-mojolicious" ,perl-mojolicious)))
4269 (home-page "https://metacpan.org/release/WebService-MusicBrainz")
4270 (synopsis "Web service API to the MusicBrainz database")
4271 (description
4272 "This module searches the MusicBrainz database through their web service
4273at @code{musicbrainz.org}.")
4274 (license license:perl-license)))
4275
87d1b7b0
PN
4276(define-public clyrics
4277 (package
4278 (name "clyrics")
7f56f107 4279 (version "0.11")
87d1b7b0
PN
4280 (source
4281 (origin
234a1825
RW
4282 (method git-fetch)
4283 (uri (git-reference
4284 (url "https://github.com/trizen/clyrics.git")
4285 (commit version)))
4286 (file-name (git-file-name name version))
87d1b7b0
PN
4287 (sha256
4288 (base32
7f56f107 4289 "0vfjy555achgi5zwa34x4q7r692nc6bq4jx518a5w4m7k5fvm71j"))))
87d1b7b0 4290 (build-system trivial-build-system)
87d1b7b0 4291 (inputs
7f56f107 4292 `(("bash" ,bash) ; for the wrapped program
87d1b7b0
PN
4293 ("perl" ,perl)
4294 ("perl-www-mechanize" ,perl-www-mechanize)
4295 ("perl-lwp-protocol-https" ,perl-lwp-protocol-https)
4296 ;; Required or else LWP will fail with "GET https://www.google.com/ ==>
4297 ;; 500 Can't verify SSL peers without knowing which Certificate
4298 ;; Authorities to trust".
4299 ("perl-mozilla-ca" ,perl-mozilla-ca)))
4300 (arguments
4301 `(#:modules ((guix build utils))
4302 #:builder (begin
4303 (use-modules (guix build utils)
4304 (ice-9 match)
4305 (srfi srfi-26))
4306 (let* ((source (assoc-ref %build-inputs "source"))
87d1b7b0
PN
4307 (output (assoc-ref %outputs "out")))
4308 (setenv "PATH"
4309 (string-append
87d1b7b0
PN
4310 (assoc-ref %build-inputs "bash") "/bin" ":"
4311 (assoc-ref %build-inputs "perl") "/bin" ":"))
234a1825 4312 (copy-recursively source (getcwd))
87d1b7b0
PN
4313 (patch-shebang "clyrics")
4314 (substitute* "clyrics"
4315 (("/usr/share") output))
4316 (install-file "clyrics" (string-append output "/bin"))
4317 (wrap-program (string-append output "/bin/clyrics")
4318 `("PERL5LIB" ":" =
4319 ,(delete
4320 ""
4321 (map (match-lambda
7f56f107
TGR
4322 (((? (cut string-prefix? "perl-" <>) name) . dir)
4323 (string-append dir "/lib/perl5/site_perl"))
4324 (_ ""))
87d1b7b0
PN
4325 %build-inputs))))
4326 (copy-recursively "plugins" (string-append output "/clyrics"))
4327 #t))))
4328 (home-page "https://github.com/trizen/clyrics")
4329 (synopsis "Extensible lyrics fetcher")
4330 (description
4331 "Clyrics is an extensible command-line tool to fetch the lyrics of songs.
4332It can be used in daemon mode along with the Music-on-Console (MOC) and cmus
4333console music players.")
4334 (license license:gpl3+)))
5703380b
PN
4335
4336(define-public demlo
4337 (let ((commit "fe9ec4c8ac2fa995ec18e6ac86d50d46df06ec01")
4338 (revision "0"))
4339 (package
4340 (name "demlo")
4341 (version (git-version "3.8" revision commit))
4342 (source
4343 (origin
4344 (method git-fetch)
4345 (uri (git-reference
4346 (url
4347 "https://gitlab.com/ambrevar/demlo")
4348 (commit commit)))
4349 (file-name (git-file-name name version))
4350 (sha256
4351 (base32
4352 "1afkbqhzn6da7zaf5ab7dvyqj1izqhzprwfb4hw448fllda9bdvk"))))
4353 (build-system go-build-system)
4354 (native-inputs
4355 `(("lua" ,lua)
4356 ("go-github-com-mattn-go-isatty" ,go-github-com-mattn-go-isatty)
4357 ("go-github-com-mattn-go-colorable" ,go-github-com-mattn-go-colorable)
4358 ("go-github-com-aarzilli-golua" ,go-github-com-aarzilli-golua)
4359 ("go-gitlab-com-ambrevar-damerau" ,go-gitlab-com-ambrevar-damerau)
4360 ("go-gitlab-com-ambrevar-golua-unicode" ,go-gitlab-com-ambrevar-golua-unicode)
4361 ("go-github-com-mgutz-ansi" ,go-github-com-mgutz-ansi)
4362 ("go-github-com-michiwend-gomusicbrainz" ,go-github-com-michiwend-gomusicbrainz)
4363 ("go-github-com-stevedonovan-luar" ,go-github-com-stevedonovan-luar)
4364 ("go-github-com-wtolson-go-taglib" ,go-github-com-wtolson-go-taglib)
4365 ("go-github-com-yookoala-realpath" ,go-github-com-yookoala-realpath)))
4366 (inputs
4367 `(("chromaprint" ,chromaprint)
4368 ("ffmpeg" ,ffmpeg)))
4369 (arguments
4370 `(#:import-path "gitlab.com/ambrevar/demlo"
4371 #:phases
4372 (modify-phases %standard-phases
4373 (add-after 'install 'wrap-program
4374 (lambda* (#:key inputs outputs #:allow-other-keys)
4375 (let ((out (assoc-ref outputs "out"))
4376 (ffmpeg (assoc-ref inputs "ffmpeg"))
4377 (chromaprint (assoc-ref inputs "chromaprint")))
4378 (wrap-program (string-append out "/bin/demlo")
4379 `("XDG_DATA_DIRS" ":" prefix (,out))
4380 `("PATH" ":" prefix
4381 ,(map (lambda (dir)
4382 (string-append dir "/bin:"
4383 dir "/sbin"))
4384 (list ffmpeg chromaprint))))
4385 #t)))
e3900a4d 4386 (add-after 'install 'install-scripts
5703380b
PN
4387 (lambda* (#:key outputs #:allow-other-keys)
4388 (let* ((out (assoc-ref outputs "out"))
4389 (root (string-append out "/src/gitlab.com/ambrevar/demlo"))
4390 (xdg-data-dirs (string-append out "/demlo")))
4391 (copy-recursively (string-append root "/actions")
4392 (string-append xdg-data-dirs "/actions"))
4393 (copy-recursively (string-append root "/scripts")
4394 (string-append xdg-data-dirs "/scripts"))
4395 (install-file (string-append root "/config.lua") xdg-data-dirs)
4396 ;; TODO: Test fish completion.
4397 (install-file (string-append root "/completion/demlo.fish")
4398 (string-append out "/share/fish/vendor_completions.d"))
4399 #t))))))
4400 (home-page "https://gitlab.com/ambrevar/demlo")
4401 (synopsis "Dynamic and extensible music library organizer")
4402 (description "Demlo is a music library organizer. It can encode, fix
4403case, change folder hierarchy according to tags or file properties, tag from
4404an online database, copy covers while ignoring duplicates or those below a
4405quality threshold, and much more. It makes it possible to manage your
4406libraries uniformly and dynamically. You can write your own rules to fit your
4407needs best.
4408
4409Demlo can address any of these recurring music library issues (and much more):
4410
4411@itemize
4412@item Fix the lack of folder structure.
4413@item Normalize tags, fix their case, chose which tags to keep and which to
4414discard.
4415@item Handle lossy and lossless audio differently.
4416@item Handle mp3 id3tags hell...
4417@item Handle multiple covers, whether embedded and/or external, resize covers,
4418discard bad quality ones.
4419@end itemize\n")
4420 (license license:expat))))
e42ba3da
LF
4421
4422(define-public lpd8editor
4423 (package
4424 (name "lpd8editor")
4425 (version "0.0.12")
4426 (source (origin
4427 (method git-fetch)
4428 (uri (git-reference
4429 (url "https://github.com/charlesfleche/lpd8editor.git")
4430 (commit (string-append "v" version))))
4431 (file-name (git-file-name name version))
4432 (sha256
4433 (base32
4434 "1v3fz8h1zs7kkl80faah79pp6yqwz0j7bkv3dbmh2hp42zbfiz1q"))))
4435 (build-system gnu-build-system)
4436 (arguments
4437 '(#:phases
4438 (modify-phases %standard-phases
4439 (add-after 'unpack 'setenv
4440 (lambda _
4441 (setenv "INSTALL_PREFIX"
4442 (assoc-ref %outputs "out"))))
4443 (delete 'configure) ; no configure script
4444 (add-before 'build 'qmake
4445 (lambda _ (invoke "qmake"))))))
4446 (native-inputs
4447 `(("pkg-config" ,pkg-config)))
4448 (inputs
4449 `(("alsa" ,alsa-lib)
4450 ("qtbase" ,qtbase)
4451 ("qtsvg" ,qtsvg)))
4452 (synopsis "Graphical editor for the Akai LPD8 MIDI controller")
4453 (description "lpd8editor is a graphical patch editor for the Akai LPD8 MIDI
4454controller.")
4455 (home-page "https://github.com/charlesfleche/lpd8editor")
4456 (license license:expat)))