gnu: Use HTTPS for almost all gnu.org HOME-PAGEs.
[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>
40effef7 3;;; Copyright © 2015, 2016, 2017 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>
3f7a182d 7;;; Copyright © 2016 Leo Famulari <leo@famulari.name>
21f05134 8;;; Copyright © 2016 Kei Kebreau <kei@openmailbox.org>
6d3ef286 9;;; Copyright © 2016 John J. Foerch <jjfoerch@earthlink.net>
23319ed6 10;;; Copyright © 2016 Alex Griffin <a@ajgrf.com>
a4f05b46 11;;; Copyright © 2017 ng0 <contact.ng0@cryptolab.net>
a42619e5 12;;; Copyright © 2017 Rodger Fox <thylakoid@openmailbox.org>
1b6826d3
RW
13;;;
14;;; This file is part of GNU Guix.
15;;;
16;;; GNU Guix is free software; you can redistribute it and/or modify it
17;;; under the terms of the GNU General Public License as published by
18;;; the Free Software Foundation; either version 3 of the License, or (at
19;;; your option) any later version.
20;;;
21;;; GNU Guix is distributed in the hope that it will be useful, but
22;;; WITHOUT ANY WARRANTY; without even the implied warranty of
23;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
24;;; GNU General Public License for more details.
25;;;
26;;; You should have received a copy of the GNU General Public License
27;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
28
29(define-module (gnu packages music)
30 #:use-module (guix utils)
31 #:use-module (guix packages)
32 #:use-module (guix download)
8e80244a 33 #:use-module (guix git-download)
1b6826d3
RW
34 #:use-module ((guix licenses) #:prefix license:)
35 #:use-module (guix build-system gnu)
f467c352 36 #:use-module (guix build-system ant)
8b9ec354 37 #:use-module (guix build-system cmake)
821664f1 38 #:use-module (guix build-system python)
8e80244a 39 #:use-module (guix build-system waf)
1b6826d3 40 #:use-module (gnu packages)
ddfddb0c 41 #:use-module (gnu packages algebra)
91595624 42 #:use-module (gnu packages apr)
c267cc15 43 #:use-module (gnu packages audio)
2d0fd07b 44 #:use-module (gnu packages autotools)
b7367762 45 #:use-module (gnu packages backup)
8b9ec354 46 #:use-module (gnu packages base) ;libbdf
1b6826d3 47 #:use-module (gnu packages bison)
b7367762 48 #:use-module (gnu packages boost)
e8069d01 49 #:use-module (gnu packages cdrom)
8b9ec354
RW
50 #:use-module (gnu packages code)
51 #:use-module (gnu packages check)
52 #:use-module (gnu packages compression)
aa0edd3f 53 #:use-module (gnu packages curl)
13416a10 54 #:use-module (gnu packages cyrus-sasl)
1b6826d3 55 #:use-module (gnu packages docbook)
99828fa7 56 #:use-module (gnu packages documentation)
91595624 57 #:use-module (gnu packages emacs)
13416a10 58 #:use-module (gnu packages file)
1b6826d3 59 #:use-module (gnu packages flex)
8e80244a 60 #:use-module (gnu packages fltk)
1b6826d3
RW
61 #:use-module (gnu packages fonts)
62 #:use-module (gnu packages fontutils)
3bf429af 63 #:use-module (gnu packages freedesktop)
6260d1a8 64 #:use-module (gnu packages gcc)
aa0edd3f 65 #:use-module (gnu packages gnupg)
1b6826d3
RW
66 #:use-module (gnu packages gettext)
67 #:use-module (gnu packages ghostscript)
ec8da0e2 68 #:use-module (gnu packages gl)
8e80244a 69 #:use-module (gnu packages glib)
c267cc15 70 #:use-module (gnu packages gnome)
770305f4 71 #:use-module (gnu packages graphics)
1b6826d3
RW
72 #:use-module (gnu packages gtk)
73 #:use-module (gnu packages guile)
c267cc15 74 #:use-module (gnu packages image)
1b6826d3 75 #:use-module (gnu packages imagemagick)
6260d1a8 76 #:use-module (gnu packages java)
c267cc15 77 #:use-module (gnu packages linux) ; for alsa-utils
91595624
RW
78 #:use-module (gnu packages libffi)
79 #:use-module (gnu packages llvm)
c267cc15
RW
80 #:use-module (gnu packages man)
81 #:use-module (gnu packages mp3)
3bf429af 82 #:use-module (gnu packages mpd)
e8069d01 83 #:use-module (gnu packages ncurses)
1b6826d3 84 #:use-module (gnu packages netpbm)
91595624 85 #:use-module (gnu packages pcre)
821664f1 86 #:use-module (gnu packages pdf)
1b6826d3
RW
87 #:use-module (gnu packages perl)
88 #:use-module (gnu packages pkg-config)
d231bb35 89 #:use-module (gnu packages pulseaudio) ;libsndfile
1b6826d3 90 #:use-module (gnu packages python)
8b9ec354 91 #:use-module (gnu packages qt)
d231bb35 92 #:use-module (gnu packages rdf)
c493679f 93 #:use-module (gnu packages readline)
1b6826d3 94 #:use-module (gnu packages rsync)
21d18113 95 #:use-module (gnu packages sdl)
2d0fd07b 96 #:use-module (gnu packages tcl)
1b6826d3 97 #:use-module (gnu packages texinfo)
8f9ac901 98 #:use-module (gnu packages tex)
13416a10 99 #:use-module (gnu packages tls)
e8069d01 100 #:use-module (gnu packages video)
8b9ec354 101 #:use-module (gnu packages web)
c30a66de 102 #:use-module (gnu packages wxwidgets)
c267cc15 103 #:use-module (gnu packages xml)
ddfddb0c 104 #:use-module (gnu packages xorg)
c267cc15 105 #:use-module (gnu packages xiph)
2d0fd07b
RW
106 #:use-module (gnu packages zip)
107 #:use-module ((srfi srfi-1) #:select (last)))
1b6826d3 108
c30a66de
RW
109(define-public aria-maestosa
110 (package
111 (name "aria-maestosa")
112 (version "1.4.11")
113 (source (origin
114 (method url-fetch)
115 (uri (string-append "mirror://sourceforge/ariamaestosa/ariamaestosa/"
116 version "/AriaSrc-" version ".tar.bz2"))
117 (sha256
118 (base32
119 "0gf9z96z83jiabxhpl856j15vl9flfgs6x1r0r6hc7g2xvwag0vy"))))
120 (build-system gnu-build-system)
121 (arguments
122 `(#:tests? #f ;no tests
123 #:phases
124 ;; TODO: Add scons-build-system and use it here.
125 (modify-phases %standard-phases
126 (delete 'configure)
127 (add-after 'unpack 'scons-propagate-environment
128 (lambda _
129 ;; By design, SCons does not, by default, propagate
130 ;; environment variables to subprocesses. See:
131 ;; <http://comments.gmane.org/gmane.linux.distributions.nixos/4969>
132 ;; Here, we modify the SConstruct file to arrange for
133 ;; environment variables to be propagated.
134 (substitute* "SConstruct"
135 (("env = Environment\\(\\)")
136 "env = Environment(ENV=os.environ)")
137 ;; Scons errors out when copying subdirectories from Resources,
138 ;; so we move them instead.
139 (("Copy") "Move")
140 ;; We move the "score" and "Documentation" directories at once,
141 ;; so we have to ignore files contained therein.
142 (("if \".svn\" in file" line)
143 (string-append line
144 " or \"score/\" in file"
145 " or \"Documentation/\" in file")))
146 #t))
147 (replace 'build (lambda _ (zero? (system* "scons"))))
148 (replace 'install
149 (lambda* (#:key outputs #:allow-other-keys)
150 (let ((out (assoc-ref outputs "out")))
151 (and
152 (zero? (system* "scons"
153 (string-append "prefix=" out)
154 "install"))
155 ;; Fix directory permissions
156 (begin
157 (chmod (string-append out "/share/Aria/Documentation") #o555)
158 (chmod (string-append out "/share/Aria/score") #o555)
159 #t))))))))
160 (inputs
161 `(("wxwidgets" ,wxwidgets)
162 ("glib" ,glib)
163 ("alsa-lib" ,alsa-lib)))
164 (native-inputs
165 `(("scons" ,scons)
166 ("pkg-config" ,pkg-config)))
167 (home-page "http://ariamaestosa.sourceforge.net/")
168 (synopsis "MIDI sequencer and editor")
169 (description
170 "Aria Maestosa is a MIDI sequencer and editor. It lets you compose, edit
171and play MIDI files with a few clicks in a user-friendly interface offering
172score, keyboard, guitar, drum and controller views.")
173 (license license:gpl3+)))
174
e8069d01
PW
175(define-public cmus
176 (package
177 (name "cmus")
178 (version "2.7.1")
179 (source (origin
180 (method url-fetch)
181 (uri (string-append
182 "https://github.com/" name "/" name "/archive/v"
183 version ".tar.gz"))
566fc7fa 184 (file-name (string-append name "-" version ".tar.gz"))
e8069d01
PW
185 (sha256
186 (base32
187 "0raixgjavkm7hxppzsc5zqbfbh2bhjcmbiplhnsxsmyj8flafyc1"))))
188 (build-system gnu-build-system)
189 (arguments
190 `(#:tests? #f ; cmus does not include tests
191 #:phases
192 (modify-phases %standard-phases
193 (replace
194 'configure
195 (lambda* (#:key outputs #:allow-other-keys)
196 (let ((out (assoc-ref outputs "out")))
197
198 ;; It's an idiosyncratic configure script that doesn't
199 ;; understand --prefix=..; it wants prefix=.. instead.
200 (zero?
201 (system* "./configure"
202 (string-append "prefix=" out)))))))))
203 ;; TODO: cmus optionally supports the following formats, which haven't yet
204 ;; been added to Guix:
205 ;;
206 ;; - Roar, libroar
207 ;;
208 ;; - DISCID_LIBS, apparently different from cd-discid which is included in
209 ;; Guix. See <http://sourceforge.net/projects/discid/>
210 (native-inputs
211 `(("pkg-config" ,pkg-config)))
212 (inputs
213 `(("alsa-lib" ,alsa-lib)
214 ("ao" ,ao)
215 ("ffmpeg" ,ffmpeg)
216 ("flac" ,flac)
217 ("jack" ,jack-1)
218 ("libcddb" ,libcddb)
219 ("libcdio-paranoia" ,libcdio-paranoia)
220 ("libcue" ,libcue)
221 ("libmad" ,libmad)
222 ("libmodplug" ,libmodplug)
223 ("libmpcdec" ,libmpcdec)
224 ("libsamplerate" ,libsamplerate)
225 ("libvorbis" ,libvorbis)
226 ("ncurses" ,ncurses)
227 ("opusfile" ,opusfile)
228 ("pulseaudio" ,pulseaudio)
229 ("wavpack" ,wavpack)))
230 (home-page "https://cmus.github.io/")
231 (synopsis "Small console music player")
232 (description "Cmus is a small and fast console music player. It supports
233many input formats and provides a customisable Vi-style user interface.")
234 (license license:gpl2+)))
235
edd1652e
KK
236(define-public denemo
237 (package
238 (name "denemo")
6ff5e9ba 239 (version "2.1")
edd1652e
KK
240 (source (origin
241 (method url-fetch)
242 (uri (string-append "mirror://gnu/denemo/denemo-"
243 version ".tar.gz"))
244 (sha256
245 (base32
6ff5e9ba 246 "0hggf8c4xcrjcxd5m00r788r7jg7g8ff54w2idfaqpj5j2ix3299"))))
edd1652e
KK
247 (build-system gnu-build-system)
248 (arguments
249 `(#:phases
250 (modify-phases %standard-phases
251 (replace 'check
252 ;; Denemo's documentation says to use this command to run its
253 ;; testsuite.
254 (lambda _
255 (zero? (system* "make" "-C" "tests" "check"))))
b43ec33b
KK
256 (add-before 'build 'set-lilypond
257 ;; This phase sets the default path for lilypond to its current
258 ;; location in the store.
259 (lambda* (#:key inputs #:allow-other-keys)
260 (let* ((lilypond (string-append (assoc-ref inputs "lilypond")
261 "/bin/lilypond")))
262 (substitute* "src/core/prefops.c"
263 (("g_string_new \\(\"lilypond\"\\);")
264 (string-append "g_string_new (\""
265 lilypond
266 "\");"))))
267 #t))
edd1652e
KK
268 (add-after 'install 'correct-filename
269 ;; "graft-derivation/shallow" from the (guix grafts) module runs in
270 ;; the C locale, expecting file names to be ASCII encoded. This
271 ;; phase renames a filename with a Unicode character in it to meet
272 ;; the aforementioned condition.
273 (lambda* (#:key outputs #:allow-other-keys)
274 (let* ((out (assoc-ref outputs "out")))
275 (chdir (string-append
276 out
277 "/share/denemo/templates/instruments/woodwind"))
278 (rename-file "Clarinet in B♭.denemo"
279 "Clarinet in Bb.denemo"))
280 #t)))))
281 (native-inputs
282 `(("glib:bin", glib "bin") ; for gtester
283 ("pkg-config" ,pkg-config)))
284 (inputs
285 `(("alsa-lib" ,alsa-lib)
286 ("aubio" ,aubio)
287 ("evince" ,evince)
288 ("fftw" ,fftw)
289 ("fluidsynth" ,fluidsynth)
290 ("glib" ,glib)
291 ("gtk+" ,gtk+)
292 ("gtk-doc" ,gtk-doc)
293 ("gtksourceview" ,gtksourceview)
294 ("guile" ,guile-2.0)
295 ("intltool" ,intltool)
296 ("librsvg" ,librsvg)
297 ("libsndfile" ,libsndfile)
298 ("libtool" ,libtool)
299 ("libxml2" ,libxml2)
b43ec33b 300 ("lilypond", lilypond)
edd1652e
KK
301 ("portaudio" ,portaudio)
302 ("portmidi" ,portmidi)
303 ("rubberband" ,rubberband)))
edd1652e
KK
304 (synopsis "Graphical music notation, front-end to GNU Lilypond")
305 (description
306 "GNU Denemo is a music notation editor that provides a convenient
307interface to the powerful music engraving program Lilypond. Music can be
308typed in using the computer keyboard, played in using a MIDI keyboard, or
309even input via a microphone connected to the sound card. The final product
310is publication-quality music notation that is continuously generated in the
311background while you work.")
312 (home-page "http://www.denemo.org")
313 (license license:gpl3+)))
314
d231bb35
RW
315(define-public hydrogen
316 (package
317 (name "hydrogen")
7276b560 318 (version "0.9.7")
d231bb35
RW
319 (source (origin
320 (method url-fetch)
321 (uri (string-append
b7367762
EF
322 "https://github.com/hydrogen-music/hydrogen/archive/"
323 version ".tar.gz"))
d231bb35
RW
324 (sha256
325 (base32
7276b560 326 "1dy2jfkdw0nchars4xi4isrz66fqn53a9qk13bqza7lhmsg3s3qy"))))
b7367762 327 (build-system cmake-build-system)
d231bb35 328 (arguments
b7367762 329 `(#:test-target "tests"))
d231bb35 330 (native-inputs
b7367762 331 `(("cppunit" ,cppunit)
d231bb35
RW
332 ("pkg-config" ,pkg-config)))
333 (inputs
b7367762 334 `(("alsa-lib" ,alsa-lib)
d231bb35 335 ("jack" ,jack-1)
b7367762 336 ;; ("ladspa" ,ladspa) ; cannot find during configure
d231bb35 337 ("lash" ,lash)
b7367762
EF
338 ("libarchive" ,libarchive)
339 ("libsndfile" ,libsndfile)
340 ("libtar" ,libtar)
341 ("lrdf" ,lrdf)
d231bb35 342 ("qt" ,qt-4)
b7367762 343 ("zlib" ,zlib)))
d231bb35
RW
344 (home-page "http://www.hydrogen-music.org")
345 (synopsis "Drum machine")
346 (description
347 "Hydrogen is an advanced drum machine for GNU/Linux. Its main goal is to
348enable professional yet simple and intuitive pattern-based drum programming.")
349 (license license:gpl2+)))
350
91595624
RW
351(define-public extempore
352 (package
353 (name "extempore")
354 (version "0.7.0")
355 (source (origin
356 (method url-fetch)
357 (uri (string-append
358 "https://github.com/digego/extempore/archive/"
359 version ".tar.gz"))
360 (sha256
361 (base32
362 "1wap1mvsicrhlazikf7l8zxg37fir8bmnh9rin28m1rix730vcch"))
363 (file-name (string-append name "-" version ".tar.gz"))))
364 (build-system cmake-build-system)
365 (arguments
366 `(;; The default target also includes ahead-of-time compilation of the
367 ;; standard libraries. However, during the "install" phase this would
368 ;; happen *again* for unknown reasons. Hence we only build the
369 ;; extempore executable during the build phase.
370 #:make-flags '("extempore")
371 #:configure-flags '("-DJACK=ON"
372 ;; We want to distribute.
373 "-DIN_TREE=OFF"
374 ;; Don't download any dependencies.
375 "-DBUILD_DEPS=OFF")
376 #:modules ((ice-9 match)
377 (guix build cmake-build-system)
378 (guix build utils))
379 #:phases
380 (modify-phases %standard-phases
381 (add-after 'unpack 'patch-directories
382 (lambda* (#:key outputs #:allow-other-keys)
383 ;; Rewrite default path to runtime directory
384 (substitute* "src/Extempore.cpp"
385 (("runtimedir \\+= \"runtime\"")
386 (string-append "runtimedir = \""
387 (assoc-ref outputs "out")
388 "/lib/extempore/runtime\"")))
389 (substitute* "extras/extempore.el"
390 (("\\(runtime-directory \\(concat default-directory \"runtime\"\\)\\)")
391 (string-append "(runtime-directory \""
392 (assoc-ref outputs "out")
393 "/lib/extempore/runtime"
394 "\")")))
395 #t))
396 (add-after 'unpack 'link-with-additional-libs
397 (lambda _
398 ;; The executable must be linked with libffi and zlib.
399 (substitute* "CMakeLists.txt"
400 (("add_dependencies\\(aot_extended extended_deps\\)") "")
401 (("target_link_libraries\\(extempore PRIVATE dl" line)
402 (string-append line " ffi z")))
403 #t))
404 ;; FIXME: AOT compilation of the nanovg bindings fail with the error:
405 ;; "Compiler Error could not bind _nvgLinearGradient"
406 (add-after 'unpack 'disable-nanovg
407 (lambda _
408 (substitute* "CMakeLists.txt"
409 (("aotcompile_lib\\(libs/external/nanovg.xtm.*") ""))
410 #t))
411 ;; FIXME: All examples that are used as tests segfault for some
412 ;; unknown reason.
413 (add-after 'unpack 'disable-broken-tests
414 (lambda _
415 (substitute* "CMakeLists.txt"
416 (("extempore_add_example_as_test\\(.*") ""))
417 #t))
418 (add-after 'unpack 'hardcode-external-lib-paths
419 (lambda* (#:key inputs #:allow-other-keys)
420 (use-modules (ice-9 match))
421 (for-each
422 (match-lambda
423 ((file-name lib pkg-name)
424 (substitute* (string-append "libs/external/" file-name ".xtm")
425 ((lib) (string-append (assoc-ref inputs pkg-name)
426 "/lib/" lib)))))
427 '(("assimp" "libassimp.so" "assimp")
428 ("portmidi" "libportmidi.so" "portmidi")
429 ("sndfile" "libsndfile.so" "libsndfile")
430 ("fft" "libkiss_fft.so" "kiss-fft")
431 ("stb_image" "libstb_image.so" "stb-image")
432 ("nanovg" "libnanovg.so" "nanovg")
433 ("glext" "libGL.so" "mesa")
434 ("glfw3" "libglfw.so" "glfw")
435 ("gl/glcore-directbind" "libGL.so" "mesa")
436 ("gl/glcompat-directbind" "libGL.so" "mesa")))
437 #t))
438 (add-after 'unpack 'use-own-llvm
439 (lambda* (#:key inputs #:allow-other-keys)
440 (setenv "EXT_LLVM_DIR" (assoc-ref inputs "llvm"))
441 ;; Our LLVM builds shared libraries, so Extempore should use
442 ;; those.
443 (substitute* "CMakeLists.txt"
444 (("CMAKE_STATIC_LIBRARY") "CMAKE_SHARED_LIBRARY"))
445 #t))
446 (add-after 'unpack 'fix-aot-compilation
447 (lambda* (#:key outputs #:allow-other-keys)
448 (substitute* "CMakeLists.txt"
449 ;; EXT_SHARE_DIR does not exist before installation, so the
450 ;; working directory should be the source directory instead.
451 (("WORKING_DIRECTORY \\$\\{EXT_SHARE_DIR\\}")
452 "WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}")
453 ;; Extempore needs to be told where the runtime is to be found.
454 ;; While we're at it we disable automatic tuning for a specific
455 ;; CPU to make binary substitution possible.
456 (("COMMAND extempore" prefix)
457 (string-append prefix " --sharedir " (getcwd)
458 " --mcpu=generic --attr=none")))
459 #t)))))
460 (inputs
461 `(("llvm" ,llvm-for-extempore)
462 ("libffi" ,libffi)
463 ("jack" ,jack-1)
464 ("libsndfile" ,libsndfile)
465 ("glfw" ,glfw)
466 ("apr" ,apr)
467 ("stb-image" ,stb-image-for-extempore)
468 ("kiss-fft" ,kiss-fft-for-extempore)
469 ("nanovg" ,nanovg-for-extempore)
470 ("portmidi" ,portmidi-for-extempore)
471 ("assimp" ,assimp)
472 ("alsa-lib" ,alsa-lib)
473 ("portaudio" ,portaudio)
474 ("mesa" ,mesa)
475 ("pcre" ,pcre)
476 ("zlib" ,zlib)))
477 (native-inputs
478 `(("perl" ,perl)
479 ("emacs" ,emacs-no-x)))
39162ee4
RW
480 ;; Extempore refuses to build on architectures other than x86_64
481 (supported-systems '("x86_64-linux"))
91595624
RW
482 (home-page "http://benswift.me/extempore-docs/index.html")
483 (synopsis "Programming environment for live coding of multimedia")
484 (description
485 "Extempore is a programming language and runtime environment designed
486with live programming in mind. It supports interactive programming in a REPL
487style, compiling and binding code just-in-time. Although Extempore has its
488roots in 'live coding' of audiovisual media art, it is suitable for any task
489domain where dynamic run-time modifiability and good numerical performance are
490required. Extempore also has strong timing and concurrency semantics, which
491are helpful when working in problem spaces where timing is important (such as
492audio and video).")
493 (license license:bsd-2)))
494
8c454dcd
RW
495(define-public klick
496 (package
497 (name "klick")
498 (version "0.12.2")
499 (source (origin
500 (method url-fetch)
501 (uri (string-append "http://das.nasophon.de/download/klick-"
502 version ".tar.gz"))
503 (sha256
504 (base32
505 "0hmcaywnwzjci3pp4xpvbijnnwvibz7gf9xzcdjbdca910y5728j"))))
506 (build-system gnu-build-system)
507 (arguments
508 `(#:tests? #f ;no "check" target
509 #:phases
510 ;; TODO: Add scons-build-system and use it here.
511 (modify-phases %standard-phases
512 (delete 'configure)
513 (replace 'build
514 (lambda* (#:key inputs outputs #:allow-other-keys)
515 (let ((out (assoc-ref outputs "out")))
516 (mkdir-p out)
517 (zero? (system* "scons" (string-append "PREFIX=" out))))))
518 (replace 'install (lambda _ (zero? (system* "scons" "install")))))))
519 (inputs
520 `(("boost" ,boost)
521 ("jack" ,jack-1)
522 ("libsndfile" ,libsndfile)
523 ("libsamplerate" ,libsamplerate)
524 ("liblo" ,liblo)
525 ("rubberband" ,rubberband)))
526 (native-inputs
527 `(("scons" ,scons)
528 ("python" ,python-2)
529 ("pkg-config" ,pkg-config)))
530 (home-page "http://das.nasophon.de/klick/")
531 (synopsis "Metronome for JACK")
532 (description
533 "klick is an advanced command-line based metronome for JACK. It allows
534you to define complex tempo maps for entire songs or performances.")
535 (license license:gpl2+)))
536
048bfba1
RW
537(define-public gtklick
538 (package
539 (name "gtklick")
540 (version "0.6.4")
541 (source (origin
542 (method url-fetch)
543 (uri (string-append "http://das.nasophon.de/download/gtklick-"
544 version ".tar.gz"))
545 (sha256
546 (base32
547 "0dq1km6njnzsqdqyf6wzir9g733z0mc9vmxfg2383k3c2a2di6bp"))))
548 (build-system python-build-system)
549 (arguments
550 `(#:tests? #f ; no tests
551 #:python ,python-2
552 #:phases
553 (modify-phases %standard-phases
554 (add-before 'build 'add-sitedirs
555 ;; .pth files are not automatically interpreted unless the
556 ;; directories containing them are added as "sites". The directories
557 ;; are then added to those in the PYTHONPATH. This is required for
558 ;; the operation of pygtk.
559 (lambda _
560 (substitute* "gtklick/gtklick.py"
561 (("import pygtk")
562 "import pygtk, site, sys
563for path in [path for path in sys.path if 'site-packages' in path]: site.addsitedir(path)"))))
564 (add-after 'unpack 'inject-store-path-to-klick
565 (lambda* (#:key inputs #:allow-other-keys)
566 (substitute* "gtklick/klick_backend.py"
567 (("KLICK_PATH = 'klick'")
568 (string-append "KLICK_PATH = '"
569 (assoc-ref inputs "klick")
570 "/bin/klick'")))
571 #t)))))
572 (inputs
573 `(("klick" ,klick)
574 ("python2-pyliblo" ,python2-pyliblo)
575 ("python2-pygtk" ,python2-pygtk)))
576 (native-inputs
b94a6ca0 577 `(("gettext" ,gettext-minimal)))
048bfba1
RW
578 (home-page "http://das.nasophon.de/gtklick/")
579 (synopsis "Simple metronome with an easy-to-use graphical interface")
580 (description
581 "Gtklick is a simple metronome with an easy-to-use graphical user
582interface. It is implemented as a frontend to @code{klick}.")
583 (license license:gpl2+)))
584
1b6826d3
RW
585(define-public lilypond
586 (package
587 (name "lilypond")
43ffe220 588 (version "2.19.51")
1b6826d3
RW
589 (source (origin
590 (method url-fetch)
591 (uri (string-append
592 "http://download.linuxaudio.org/lilypond/sources/v"
593 (version-major+minor version) "/"
594 name "-" version ".tar.gz"))
595 (sha256
596 (base32
43ffe220 597 "1b4jvc0fixbnp8x457fzk5wgb4zd03npwwivp60kc27fmv63w5l1"))))
1b6826d3
RW
598 (build-system gnu-build-system)
599 (arguments
127b04d7 600 `(#:tests? #f ; out-test/collated-files.html fails
1b6826d3 601 #:out-of-source? #t
409be57b 602 #:make-flags '("conf=www") ;to generate images for info manuals
127b04d7 603 #:configure-flags
409be57b
RW
604 (list "CONFIGURATION=www"
605 (string-append "--with-texgyre-dir="
127b04d7
RW
606 (assoc-ref %build-inputs "font-tex-gyre")
607 "/share/fonts/opentype/"))
1b6826d3 608 #:phases
a8bc747a 609 (modify-phases %standard-phases
409be57b
RW
610 (add-after 'unpack 'fix-path-references
611 (lambda _
a8bc747a
RW
612 (substitute* "scm/backend-library.scm"
613 (("\\(search-executable '\\(\"gs\"\\)\\)")
409be57b
RW
614 (string-append "\"" (which "gs") "\""))
615 (("\"/bin/sh\"")
616 (string-append "\"" (which "sh") "\"")))
a8bc747a
RW
617 #t))
618 (add-before 'configure 'prepare-configuration
619 (lambda _
620 (substitute* "configure"
7affb2c1
RW
621 (("SHELL=/bin/sh") "SHELL=sh")
622 ;; When checking the fontforge version do not consider the
623 ;; version string that's part of the directory.
624 (("head -n") "tail -n"))
409be57b
RW
625 (setenv "out" "www")
626 (setenv "conf" "www")
627 #t))
628 (add-after 'install 'install-info
629 (lambda _
630 (zero? (system* "make"
631 "-j" (number->string (parallel-job-count))
632 "conf=www" "install-info")))))))
1b6826d3
RW
633 (inputs
634 `(("guile" ,guile-1.8)
635 ("font-dejavu" ,font-dejavu)
127b04d7 636 ("font-tex-gyre" ,font-tex-gyre)
1b6826d3
RW
637 ("fontconfig" ,fontconfig)
638 ("freetype" ,freetype)
fb0b9ff1 639 ("ghostscript" ,ghostscript)
1b6826d3
RW
640 ("pango" ,pango)
641 ("python" ,python-2)))
642 (native-inputs
643 `(("bison" ,bison)
644 ("perl" ,perl)
645 ("flex" ,flex)
646 ("fontforge" ,fontforge)
647 ("dblatex" ,dblatex)
b94a6ca0 648 ("gettext" ,gettext-minimal)
1b6826d3
RW
649 ("imagemagick" ,imagemagick)
650 ("netpbm" ,netpbm) ;for pngtopnm
651 ("texlive" ,texlive) ;metafont and metapost
652 ("texinfo" ,texinfo)
653 ("texi2html" ,texi2html)
654 ("rsync" ,rsync)
655 ("pkg-config" ,pkg-config)
656 ("zip" ,zip)))
657 (home-page "http://www.lilypond.org/")
658 (synopsis "Music typesetting")
659 (description
660 "GNU LilyPond is a music typesetter, which produces high-quality sheet
661music. Music is input in a text file containing control sequences which are
662interpreted by LilyPond to produce the final document. It is extendable with
663Guile.")
55ca5e80
LC
664 (license license:gpl3+)
665
666 ;; On armhf and mips64el, building the documentation sometimes leads to
667 ;; more than an hour of silence, so double the max silent time.
668 (properties `((max-silent-time . 7200)))))
c267cc15 669
8e80244a
RW
670(define-public non-sequencer
671 ;; The latest tagged release is three years old and uses a custom build
1bbe7959
RW
672 ;; system, so we take the last commit.
673 (let ((commit "a22f33f486a5c6f75b60e36f66504c036c0f6f8c")
674 (revision "2"))
8e80244a
RW
675 (package
676 (name "non-sequencer")
1bbe7959 677 (version (string-append "1.9.5-" revision "." (string-take commit 7)))
8e80244a
RW
678 (source (origin
679 (method git-fetch)
680 (uri (git-reference
681 (url "git://git.tuxfamily.org/gitroot/non/non.git")
682 (commit commit)))
683 (sha256
684 (base32
1bbe7959 685 "09q5x8i4f8mqnl8w6xnsq5zriy4bzdl4x2vq9n34a433rfrk84bg"))
8e80244a
RW
686 (file-name (string-append name "-" version "-checkout"))))
687 (build-system waf-build-system)
688 (arguments
689 `(#:tests? #f ;no "check" target
e591a4d6
RW
690 #:configure-flags
691 (list "--project=sequencer"
692 ;; Disable the use of SSE unless on x86_64.
693 ,@(if (not (string-prefix? "x86_64" (or (%current-target-system)
694 (%current-system))))
695 '("--disable-sse")
696 '()))
d8c317df
SB
697 #:phases
698 (modify-phases %standard-phases
699 (add-before
700 'configure 'set-flags
701 (lambda _
702 ;; Compile with C++11, required by libsigc++.
703 (setenv "CXXFLAGS" "-std=c++11")
704 #t)))
8e80244a
RW
705 #:python ,python-2))
706 (inputs
707 `(("jack" ,jack-1)
708 ("libsigc++" ,libsigc++)
709 ("liblo" ,liblo)
710 ("ntk" ,ntk)))
711 (native-inputs
712 `(("pkg-config" ,pkg-config)))
713 (home-page "http://non.tuxfamily.org/wiki/Non%20Sequencer")
714 (synopsis "Pattern-based MIDI sequencer")
715 (description
716 "The Non Sequencer is a powerful, lightweight, real-time,
717pattern-based MIDI sequencer. It utilizes the JACK Audio Connection Kit for
718MIDI I/O and the NTK GUI toolkit for its user interface. Everything in Non
719Sequencer happens on-line, in real-time. Music can be composed live, while the
720transport is rolling.")
721 (license license:gpl2+))))
722
ded69d6f
RW
723(define-public non-session-manager
724 (package (inherit non-sequencer)
725 (name "non-session-manager")
726 (arguments
727 (substitute-keyword-arguments (package-arguments non-sequencer)
728 ((#:configure-flags flags)
729 `(cons "--project=session-manager"
730 (delete "--project=sequencer" ,flags)))))
731 (inputs
732 `(("jack" ,jack-1)
733 ("liblo" ,liblo)
734 ("ntk" ,ntk)))
735 (native-inputs
736 `(("pkg-config" ,pkg-config)))
737 (home-page "http://non.tuxfamily.org/nsm/")
738 (synopsis "Audio session management")
739 (description
740 "The Non Session Manager is an API and an implementation for audio
741session management. NSM clients use a well-specified OSC protocol to
742communicate with the session management daemon.")
743 (license license:gpl2+)))
744
c267cc15
RW
745(define-public solfege
746 (package
747 (name "solfege")
748 (version "3.22.2")
749 (source (origin
750 (method url-fetch)
751 (uri (string-append
752 "mirror://gnu/solfege/solfege-"
753 version ".tar.xz"))
754 (sha256
755 (base32
756 "1w25rxdbj907nsx285k9nm480pvy12w3yknfh4n1dfv17cwy072i"))))
757 (build-system gnu-build-system)
758 (arguments
759 `(#:tests? #f ; xmllint attempts to download DTD
760 #:test-target "test"
761 #:phases
762 (alist-cons-after
763 'unpack 'fix-configuration
764 (lambda* (#:key inputs #:allow-other-keys)
765 (substitute* "default.config"
766 (("csound=csound")
767 (string-append "csound="
768 (assoc-ref inputs "csound")
769 "/bin/csound"))
770 (("/usr/bin/aplay")
771 (string-append (assoc-ref inputs "aplay")
772 "/bin/aplay"))
773 (("/usr/bin/timidity")
774 (string-append (assoc-ref inputs "timidity")
775 "/bin/timidity"))
776 (("/usr/bin/mpg123")
777 (string-append (assoc-ref inputs "mpg123")
778 "/bin/mpg123"))
779 (("/usr/bin/ogg123")
780 (string-append (assoc-ref inputs "ogg123")
781 "/bin/ogg123"))))
782 (alist-cons-before
783 'build 'patch-python-shebangs
784 (lambda _
785 ;; Two python scripts begin with a Unicode BOM, so patch-shebang
786 ;; has no effect.
787 (substitute* '("solfege/parsetree.py"
788 "solfege/presetup.py")
789 (("#!/usr/bin/python") (string-append "#!" (which "python")))))
790 (alist-cons-before
791 'build 'add-sitedirs
792 ;; .pth files are not automatically interpreted unless the
793 ;; directories containing them are added as "sites". The directories
794 ;; are then added to those in the PYTHONPATH. This is required for
795 ;; the operation of pygtk and pygobject.
796 (lambda _
797 (substitute* "run-solfege.py"
798 (("import os")
799 "import os, site
800for path in [path for path in sys.path if 'site-packages' in path]: site.addsitedir(path)")))
801 (alist-cons-before
802 'build 'adjust-config-file-prefix
803 (lambda* (#:key outputs #:allow-other-keys)
804 (substitute* "run-solfege.py"
805 (("prefix = os.path.*$")
806 (string-append "prefix = " (assoc-ref outputs "out")))))
807 (alist-cons-after
808 'install 'wrap-program
809 (lambda* (#:key inputs outputs #:allow-other-keys)
f3045a5b 810 ;; Make sure 'solfege' runs with the correct PYTHONPATH.
c267cc15 811 (let* ((out (assoc-ref outputs "out"))
f3045a5b 812 (path (getenv "PYTHONPATH")))
c267cc15 813 (wrap-program (string-append out "/bin/solfege")
f3045a5b 814 `("PYTHONPATH" ":" prefix (,path)))))
c267cc15
RW
815 %standard-phases)))))))
816 (inputs
817 `(("python" ,python-2)
818 ("pygtk" ,python2-pygtk)
b94a6ca0 819 ("gettext" ,gettext-minimal)
c267cc15 820 ("gtk" ,gtk+)
e8309291 821 ("lilypond" ,lilypond)
c267cc15
RW
822 ;; players needed at runtime
823 ("aplay" ,alsa-utils)
824 ("csound" ,csound) ; optional, needed for some exercises
825 ("mpg123" ,mpg123)
826 ("ogg123" ,vorbis-tools)
827 ("timidity" ,timidity++)))
828 (native-inputs
829 `(("pkg-config" ,pkg-config)
830 ("txt2man" ,txt2man)
831 ("libxml2" ,libxml2) ; for tests
832 ("ghostscript" ,ghostscript)
c267cc15
RW
833 ("texinfo" ,texinfo)))
834 (home-page "https://www.gnu.org/software/solfege/")
835 (synopsis "Ear training")
836 (description
837 "GNU Solfege is a program for practicing musical ear-training. With it,
838you can practice your recognition of various musical intervals and chords. It
839features a statistics overview so you can monitor your progress across several
840sessions. Solfege is also designed to be extensible so you can easily write
841your own lessons.")
842 (license license:gpl3+)))
6260d1a8 843
8b9ec354
RW
844(define-public powertabeditor
845 (package
846 (name "powertabeditor")
40effef7 847 (version "2.0.0-alpha9")
8b9ec354
RW
848 (source (origin
849 (method url-fetch)
850 (uri (string-append
851 "https://github.com/powertab/powertabeditor/archive/"
852 version ".tar.gz"))
853 (file-name (string-append name "-" version ".tar.gz"))
854 (sha256
855 (base32
40effef7 856 "1zjdz1qpkl83xr6dkap8airqcyjs3mxc5dzfyhrrvkyr7dics7ii"))
8b9ec354
RW
857 (modules '((guix build utils)))
858 (snippet
859 '(begin
860 ;; Remove bundled sources for external libraries
861 (delete-file-recursively "external")
40effef7 862 ;; Use only system libraries
8b9ec354 863 (substitute* "CMakeLists.txt"
40effef7
RW
864 (("include\\( PTE_ThirdParty \\)")
865 "\
866include(third_party/Qt)
867include(third_party/boost)
868add_library( Catch INTERFACE IMPORTED )
869add_library( rapidjson INTERFACE IMPORTED )"))
8b9ec354
RW
870 #t))))
871 (build-system cmake-build-system)
872 (arguments
7e11d113 873 `(#:modules ((guix build cmake-build-system)
8b9ec354
RW
874 (guix build utils)
875 (ice-9 match))
876 #:configure-flags
877 ;; CMake appears to lose the RUNPATH for some reason, so it has to be
878 ;; explicitly set with CMAKE_INSTALL_RPATH.
7e11d113 879 (list "-DCMAKE_BUILD_WITH_INSTALL_RPATH=TRUE"
7e11d113 880 (string-append "-DCMAKE_INSTALL_RPATH="
8b9ec354
RW
881 (string-join (map (match-lambda
882 ((name . directory)
883 (string-append directory "/lib")))
40effef7
RW
884 %build-inputs) ";"))
885 "-DPTE_DATA_DIR=share/powertabeditor")
8b9ec354
RW
886 #:phases
887 (modify-phases %standard-phases
40effef7
RW
888 (replace 'check
889 (lambda _
890 (zero? (system* "bin/pte_tests"
891 ;; FIXME: one test fails.
892 "exclude:Formats/PowerTabOldImport/Directions"))))
893 (add-after 'unpack 'set-target-directories
894 (lambda _
895 (substitute* "cmake/PTE_Executable.cmake"
896 (("set\\( install_dir.*")
897 "set( install_dir bin )\n"))
898 (substitute* "cmake/PTE_Paths.cmake"
899 (("set\\( PTE_DATA_DIR .*")
900 "set( PTE_DATA_DIR share/powertabeditor )\n"))
901 ;; Tests hardcode the data directory as "data"
902 (substitute* "test/CMakeLists.txt"
903 (("\\$\\{PTE_DATA_DIR\\}") "data"))
904 #t))
905 (add-before 'configure 'remove-third-party-libs
906 (lambda* (#:key inputs #:allow-other-keys)
907 ;; Link with required static libraries, because we're not
908 ;; using the bundled version of withershins.
909 (substitute* "source/build/CMakeLists.txt"
910 (("withershins" line)
911 (string-append line "\n"
912 (assoc-ref inputs "binutils")
913 "/lib/libbfd.a\n"
914 (assoc-ref inputs "libiberty")
915 "/lib/libiberty.a\n"
916 "dl\n"
917 "z\n")))
918 #t)))))
8b9ec354
RW
919 (inputs
920 `(("boost" ,boost)
921 ("alsa-lib" ,alsa-lib)
0a0bfd68 922 ("qtbase" ,qtbase)
8b9ec354 923 ("withershins" ,withershins)
d6902798 924 ("libiberty" ,libiberty) ;for withershins
8b9ec354
RW
925 ("binutils" ,binutils) ;for -lbfd and -liberty (for withershins)
926 ("timidity" ,timidity++)
927 ("pugixml" ,pugixml)
928 ("rtmidi" ,rtmidi)
929 ("rapidjson" ,rapidjson)
930 ("zlib" ,zlib)))
931 (native-inputs
932 `(("catch" ,catch-framework)
933 ("pkg-config" ,pkg-config)))
934 (home-page "http://powertabs.net")
935 (synopsis "Guitar tablature editor")
936 (description
937 "Power Tab Editor 2.0 is the successor to the famous original Power Tab
938Editor. It is compatible with Power Tab Editor 1.7 and Guitar Pro.")
939 (license license:gpl3+)))
940
3d4b1bb9
RW
941(define-public jalv-select
942 (package
943 (name "jalv-select")
944 (version "0.7")
945 (source (origin
946 (method url-fetch)
947 (uri (string-append "https://github.com/brummer10/jalv_select/"
948 "archive/V" version ".tar.gz"))
949 (sha256
950 (base32
951 "01y93l5c1f8za04a0y4b3v0nhsm1lhj6rny9xpdgd7jz6sl6w581"))))
952 (build-system gnu-build-system)
953 (arguments
954 `(#:make-flags
955 (list (string-append "PREFIX=" (assoc-ref %outputs "out")))
956 #:phases
957 (modify-phases %standard-phases
958 (delete 'configure)
959 (add-after 'unpack 'ignore-PATH
960 (lambda* (#:key inputs #:allow-other-keys)
961 (substitute* "jalv.select.cpp"
962 (("echo \\$PATH | tr ':' '\\\n' | xargs ls")
963 (string-append "ls -1 " (assoc-ref inputs "jalv") "/bin")))
964 (substitute* "jalv.select.h"
965 (("gtkmm.h") "gtkmm-2.4/gtkmm.h"))
966 #t)))))
967 (inputs
968 `(("lilv" ,lilv)
969 ("lv2" ,lv2)
970 ("jalv" ,jalv)
971 ("gtkmm" ,gtkmm-2)))
972 (native-inputs
973 `(("pkg-config" ,pkg-config)))
974 (home-page "https://github.com/brummer10/jalv_select")
975 (synopsis "GUI to select LV2 plugins and run them with jalv")
976 (description
977 "The jalv.select package provides a graphical user interface allowing
978users to select LV2 plugins and run them with jalv.")
979 (license license:public-domain)))
980
b095e762
RW
981(define-public synthv1
982 (package
983 (name "synthv1")
f2bd238b 984 (version "0.8.0")
b095e762
RW
985 (source (origin
986 (method url-fetch)
987 (uri
de67e922
LF
988 (string-append "mirror://sourceforge/synthv1/synthv1/" version
989 "/synthv1-" version ".tar.gz"))
b095e762
RW
990 (sha256
991 (base32
f2bd238b 992 "155pfyhr6d35ciw95pbxlqy7751cmij8j5d849rvblqbjzyzb5qx"))))
b095e762 993 (build-system gnu-build-system)
69008d73
DC
994 (arguments
995 `(#:tests? #f ; There are no tests.
996 #:configure-flags
997 '("CXXFLAGS=-std=gnu++11")))
b095e762
RW
998 (inputs
999 `(("jack" ,jack-1)
1000 ("lv2" ,lv2)
1001 ("alsa-lib" ,alsa-lib)
1002 ("liblo" ,liblo)
e5f2afdb
EF
1003 ("qtbase" ,qtbase)
1004 ("qttools" ,qttools)))
b095e762
RW
1005 (home-page "http://synthv1.sourceforge.net")
1006 (synopsis "Polyphonic subtractive synthesizer")
1007 (description
1008 "Synthv1 is an old-school subtractive polyphonic synthesizer with four
1009oscillators and stereo effects.")
1010 (license license:gpl2+)))
2bb00612 1011
cf9af706
RW
1012(define-public drumkv1
1013 (package
1014 (name "drumkv1")
1015 (version "0.8.0")
1016 (source (origin
1017 (method url-fetch)
1018 (uri
1019 (string-append "mirror://sourceforge/drumkv1/drumkv1/" version
1020 "/drumkv1-" version ".tar.gz"))
1021 (sha256
1022 (base32
1023 "1n2kd468kn71yp2asmamprvblmdlvh0zd8lsh3598dwi4b7aa3ga"))))
1024 (build-system gnu-build-system)
1025 (arguments
1026 `(#:tests? #f ; There are no tests.
1027 #:configure-flags
1028 '("CXXFLAGS=-std=gnu++11")))
1029 (inputs
1030 `(("jack" ,jack-1)
1031 ("lv2" ,lv2)
1032 ("libsndfile" ,libsndfile)
1033 ("alsa-lib" ,alsa-lib)
1034 ("liblo" ,liblo)
1035 ("qtbase" ,qtbase)))
1036 (native-inputs
1037 `(("pkg-config" ,pkg-config)
1038 ("qttools" ,qttools)))
1039 (home-page "http://drumkv1.sourceforge.net")
1040 (synopsis "Drum-kit sampler synthesizer with stereo effects")
1041 (description
1042 "Drumkv1 is an old-school drum-kit sampler synthesizer with stereo
1043effects.")
1044 (license license:gpl2+)))
1045
18675264
RW
1046(define-public samplv1
1047 (package
1048 (name "samplv1")
1049 (version "0.8.0")
1050 (source (origin
1051 (method url-fetch)
1052 (uri
1053 (string-append "mirror://sourceforge/samplv1/samplv1/" version
1054 "/samplv1-" version ".tar.gz"))
1055 (sha256
1056 (base32
1057 "0j3hkmd9q0bw9b7nk9cssqywlrishkd1n790a9vq6gh3pdc5sf3r"))))
1058 (build-system gnu-build-system)
1059 (arguments
1060 `(#:tests? #f ; There are no tests.
1061 #:configure-flags
1062 '("CXXFLAGS=-std=gnu++11")))
1063 (inputs
1064 `(("jack" ,jack-1)
1065 ("lv2" ,lv2)
1066 ("libsndfile" ,libsndfile)
1067 ("alsa-lib" ,alsa-lib)
1068 ("liblo" ,liblo)
1069 ("qtbase" ,qtbase)))
1070 (native-inputs
1071 `(("pkg-config" ,pkg-config)
1072 ("qttools" ,qttools)))
1073 (home-page "http://samplv1.sourceforge.net")
1074 (synopsis "Polyphonic sampler synthesizer with stereo effects")
1075 (description
1076 "Samplv1 is an old-school polyphonic sampler synthesizer with stereo
1077effects.")
1078 (license license:gpl2+)))
1079
2bb00612
RW
1080(define-public amsynth
1081 (package
1082 (name "amsynth")
1083 (version "1.6.4")
1084 (source
1085 (origin
1086 (method url-fetch)
1087 (uri (string-append "https://github.com/amsynth/amsynth/releases/"
1088 "download/release-" version
1089 "/amsynth-" version ".tar.bz2"))
1090 (sha256
1091 (base32
1092 "07dp9dl38g9krjqxxh89l2z42z08yzrl57cx95b1l67xnxwjp5k3"))))
1093 (build-system gnu-build-system)
1094 (arguments
1095 `(#:phases
1096 (modify-phases %standard-phases
1097 (add-before 'configure 'set-flags
1098 (lambda _
1099 ;; Compile with C++11, required by gtkmm.
1100 (setenv "CXXFLAGS" "-std=c++11")
1101 #t)))))
1102 (inputs
1103 `(("alsa-lib" ,alsa-lib)
1104 ("jack" ,jack-1)
1105 ("lv2" ,lv2)
1106 ("libsndfile" ,libsndfile)
1107 ("gtk+" ,gtk+-2)
1108 ("gtkmm" ,gtkmm-2)))
1109 (native-inputs
1110 `(("pkg-config" ,pkg-config)))
1111 (home-page "http://amsynth.github.io")
1112 (synopsis "Analog modeling synthesizer")
1113 (description
1114 "amsynth is an easy-to-use software synthesizer with a classic
1115subtractive synthesizer topology. Its features include: dual
1116oscillators (sine, saw, square, noise) with hard sync; 12 and 24 dB/oct
1117resonant filters (low-pass, high-pass, band-pass, notch); mono, poly, legato
1118keyboard modes; dual ADSR envelope generators for filter and amplitude; LFO
1119which can modulate the oscillators, filter, and amplitude; distortion and
1120reverb effects.")
1121 (license license:gpl2+)))
b095e762 1122
ec8da0e2
RW
1123(define-public setbfree
1124 (package
1125 (name "setbfree")
a39f48b8 1126 (version "0.8.1")
ec8da0e2
RW
1127 (source (origin
1128 (method url-fetch)
1129 (uri
a39f48b8
RW
1130 (string-append "https://github.com/pantherb/setBfree/archive/v"
1131 version ".tar.gz"))
1132 (file-name (string-append name "-" version ".tar.gz"))
ec8da0e2
RW
1133 (sha256
1134 (base32
a39f48b8 1135 "0hj0rqk5yd4fzs7bwy6a6nhqgrmcggkjcr4il76rxy92r7nwabf3"))))
ec8da0e2
RW
1136 (build-system gnu-build-system)
1137 (arguments
1138 `(#:tests? #f ; no "check" target
1139 #:make-flags
1140 (list (string-append "PREFIX=" (assoc-ref %outputs "out"))
1141 (string-append "FONTFILE="
1142 (assoc-ref %build-inputs "font-bitstream-vera")
b42d4508
RW
1143 "/share/fonts/truetype/VeraBd.ttf")
1144 ;; Disable unsupported optimization flags on non-x86
1145 ,@(let ((system (or (%current-target-system)
1146 (%current-system))))
1147 (if (or (string-prefix? "x86_64" system)
1148 (string-prefix? "i686" system))
1149 '()
1150 '("OPTIMIZATIONS=-ffast-math -fomit-frame-pointer -O3"))))
ec8da0e2
RW
1151 #:phases
1152 (modify-phases %standard-phases
1153 (add-before 'build 'set-CC-variable
1154 (lambda _ (setenv "CC" "gcc") #t))
1155 (delete 'configure))))
1156 (inputs
1157 `(("jack" ,jack-1)
1158 ("lv2" ,lv2)
1159 ("zita-convolver" ,zita-convolver)
1160 ("glu" ,glu)
1161 ("ftgl" ,ftgl)
1162 ("font-bitstream-vera" ,font-bitstream-vera)))
1163 (native-inputs
1164 `(("help2man" ,help2man)
1165 ("pkg-config" ,pkg-config)))
1166 (home-page "http://setbfree.org")
1167 (synopsis "Tonewheel organ")
1168 (description
1169 "setBfree is a MIDI-controlled, software synthesizer designed to imitate
1170the sound and properties of the electromechanical organs and sound
1171modification devices that brought world-wide fame to the names and products of
1172Laurens Hammond and Don Leslie.")
1173 (license license:gpl2+)))
1174
770305f4
RW
1175(define-public beast
1176 (package
1177 (name "beast")
1178 (version "0.10.0")
1179 (source (origin
1180 (method url-fetch)
1181 (uri (string-append "https://testbit.eu/pub/dists/beast/beast-"
1182 version ".tar.xz"))
1183 (sha256
1184 (base32
1185 "1jzzmfwssklzw8fvvil04n8csc0zm99fnd9p2xa7c0xchg37lvhn"))))
1186 (build-system gnu-build-system)
844f4f6e
EF
1187 (arguments
1188 '(#:parallel-build? #f)) ; Race conditions cause build failures
770305f4
RW
1189 (inputs
1190 `(("rapicorn" ,rapicorn)
1191 ("guile" ,guile-1.8)
1192 ("python" ,python-2)
770305f4
RW
1193 ("libgnomecanvas" ,libgnomecanvas)
1194 ("libogg" ,libogg)
1195 ("libmad" ,libmad)
1196 ("flac" ,flac)
1197 ("alsa-lib" ,alsa-lib)
1198 ("libvorbis" ,libvorbis)
b94a6ca0 1199 ("gettext" ,gettext-minimal)))
770305f4
RW
1200 (native-inputs
1201 `(("pkg-config" ,pkg-config)
1202 ("glib:bin" ,glib "bin")
f2516de2 1203 ("cython" ,python2-cython)
770305f4
RW
1204 ("perl" ,perl)
1205 ("perl-xml-parser" ,perl-xml-parser)))
1206 (home-page "https://testbit.eu/wiki/Beast_Home")
1207 (synopsis "Music composition and modular synthesis environment")
1208 (description
1209 "Beast is a music composition and modular synthesis application. It
1210supports a wide range of standards in the field, such as MIDI, various audio
1211file formats and LADSPA modules. It allows for multitrack editing, real-time
1212synthesis, 32bit audio rendering, precise timing down to sample granularity,
1213on-demand and partial loading of wave files, on the fly decoding, stereo
1214mixing, FFT scopes, MIDI automation and full scriptability in Scheme.")
1215 (license license:gpl3+)))
1216
96250294
RW
1217(define-public bristol
1218 (package
1219 (name "bristol")
1220 (version "0.60.11")
1221 (source (origin
1222 (method url-fetch)
1223 (uri (string-append "mirror://sourceforge/bristol/bristol/"
1224 (version-major+minor version)
1225 "/bristol-" version ".tar.gz"))
1226 (sha256
1227 (base32
1228 "1fi2m4gmvxdi260821y09lxsimq82yv4k5bbgk3kyc3x1nyhn7vx"))))
1229 (build-system gnu-build-system)
18ef998b
RW
1230 (arguments
1231 `(#:phases
1232 (modify-phases %standard-phases
1233 (add-after 'unpack 'remove-sse-flags
1234 (lambda* (#:key system #:allow-other-keys)
1235 (when (not (or (string-prefix? "x86_64" system)
1236 (string-prefix? "i686" system)))
1237 (substitute* "bristol/Makefile.in"
1238 (("-msse -mfpmath=sse") "")))
73124d34
RW
1239 #t))
1240 ;; We know that Bristol has been linked with JACK and we don't have
1241 ;; ldd, so we can just skip this check.
1242 (add-after 'unpack 'do-not-grep-for-jack
1243 (lambda _
1244 (substitute* "bin/startBristol.in"
1245 (("ldd `which bristol` | grep jack") "echo guix"))
18ef998b 1246 #t)))))
96250294
RW
1247 (inputs
1248 `(("alsa-lib" ,alsa-lib)
1249 ("jack" ,jack-1)
1250 ("liblo" ,liblo)
1251 ("libx11" ,libx11)))
1252 (native-inputs
1253 `(("pkg-config" ,pkg-config)))
1254 (home-page "http://bristol.sourceforge.net/")
1255 (synopsis "Synthesizer emulator")
1256 (description
1257 "Bristol is an emulation package for a number of different 'classic'
1258synthesizers including additive and subtractive and a few organs. The
1259application consists of the engine, which is called bristol, and its own GUI
1260library called brighton that represents all the emulations. There are
1261currently more than twenty different emulations; each does sound different
1262although the author maintains that the quality and accuracy of each emulation
1263is subjective.")
1264 (license license:gpl3+)))
1265
6260d1a8
RW
1266(define-public tuxguitar
1267 (package
1268 (name "tuxguitar")
f467c352 1269 (version "1.3.2")
6260d1a8
RW
1270 (source (origin
1271 (method url-fetch)
1272 (uri (string-append
1273 "mirror://sourceforge/tuxguitar/TuxGuitar/TuxGuitar-"
f467c352 1274 version "/tuxguitar-" version "-src.tar.gz"))
6260d1a8
RW
1275 (sha256
1276 (base32
f467c352
RW
1277 "0ldml31zvywid1w28mfd65ramyiics55fdl0ch846vm7j7nwv58j"))
1278 (modules '((guix build utils)))
1279 (snippet
1280 ;; Delete pre-built classes
1281 '(delete-file-recursively "TuxGuitar-android/bin"))))
1282 (build-system ant-build-system)
6260d1a8 1283 (arguments
f467c352
RW
1284 `(#:build-target "build"
1285 #:tests? #f ; no tests
6260d1a8 1286 #:phases
5f1c9498 1287 (modify-phases %standard-phases
f467c352
RW
1288 (add-after 'unpack 'enter-dir
1289 (lambda _ (chdir "TuxGuitar-lib") #t))
1290 (add-after 'build 'build-editor-utils
1291 (lambda* (#:key inputs outputs #:allow-other-keys)
1292 (chdir "..")
1293 (let ((cwd (getcwd)))
1294 (setenv "CLASSPATH"
1295 (string-append
1296 cwd "/TuxGuitar-lib/tuxguitar-lib.jar" ":"
1297 cwd "/TuxGuitar-editor-utils/build/jar/tuxguitar-editor-utils.jar" ":"
1298 (getenv "CLASSPATH"))))
1299 (chdir "TuxGuitar-editor-utils")
1300 ;; Generate default build.xml
1301 ((@@ (guix build ant-build-system) default-build.xml)
1302 "tuxguitar-editor-utils.jar"
1303 (string-append (assoc-ref outputs "out")
1304 "/share/java"))
1305 ((assoc-ref %standard-phases 'build))))
1306 (add-after 'build-editor-utils 'build-application
1307 (lambda _
1308 (chdir "../TuxGuitar")
1309 ((assoc-ref %standard-phases 'build)
1310 #:build-target "build")))
1311 (replace 'install
1312 (lambda* (#:key inputs outputs #:allow-other-keys)
1313 (let* ((out (assoc-ref outputs "out"))
1314 (bin (string-append out "/bin"))
1315 (share (string-append out "/share"))
1316 (lib (string-append share "/java"))
1317 (swt (assoc-ref inputs "java-swt")))
1318 (mkdir-p bin)
f467c352
RW
1319 ;; install all jars
1320 (for-each (lambda (file)
1321 (install-file file lib))
1322 (find-files ".." "\\.jar$"))
1323 ;; install all resources
1324 (for-each (lambda (file)
1325 (install-file file share))
1326 (find-files "share" ".*"))
1327 ;; create wrapper
1328 (call-with-output-file (string-append bin "/tuxguitar")
1329 (lambda (port)
1330 (let ((classpath (string-join (append (find-files lib "\\.jar$")
1331 (find-files swt "\\.jar$"))
1332 ":")))
1333 (format
1334 port
1335 (string-append "#!/bin/sh\n"
1336 (which "java")
1337 " -cp " classpath
1338 " -Dtuxguitar.home.path=" out
1339 " -Dtuxguitar.share.path=" out "/share"
1340 " -Dswt.library.path=" swt "/lib"
1341 " org.herac.tuxguitar.app.TGMainSingleton"
1342 " \"$1\" \"$2\"")))))
1343 (chmod (string-append bin "/tuxguitar") #o555)
1344 #t))))))
6260d1a8 1345 (inputs
1ad15c16 1346 `(("java-swt" ,java-swt)))
6260d1a8
RW
1347 (home-page "http://tuxguitar.com.ar")
1348 (synopsis "Multitrack tablature editor and player")
1349 (description
1350 "TuxGuitar is a guitar tablature editor with player support through midi.
1351It can display scores and multitrack tabs. TuxGuitar provides various
1352additional features, including autoscrolling while playing, note duration
1353management, bend/slide/vibrato/hammer-on/pull-off effects, support for
1354tuplets, time signature management, tempo management, gp3/gp4/gp5 import and
1355export.")
1356 (license license:lgpl2.1+)))
2d0fd07b
RW
1357
1358(define-public pd
1359 (package
1360 (name "pd")
1361 (version "0.45.4")
1362 (source (origin
1363 (method url-fetch)
1364 (uri
1365 (string-append "mirror://sourceforge/pure-data/pure-data/"
1366 version "/pd-" (version-major+minor version)
1367 "-" (last (string-split version #\.))
1368 ".src.tar.gz"))
1369 (sha256
1370 (base32
1371 "1ls2ap5yi2zxvmr247621g4jx0hhfds4j5704a050bn2n3l0va2p"))))
1372 (build-system gnu-build-system)
1373 (arguments
1374 `(#:tests? #f ; no "check" target
1375 #:phases
1376 (modify-phases %standard-phases
1377 (add-before
1378 'configure 'fix-wish-path
1379 (lambda _
1380 (substitute* "src/s_inter.c"
1381 ((" wish ") (string-append " " (which "wish8.6") " ")))
1382 (substitute* "tcl/pd-gui.tcl"
1383 (("exec wish ") (string-append "exec " (which "wish8.6") " ")))
1384 #t))
1385 (add-after
1386 'unpack 'autoconf
1387 (lambda _ (zero? (system* "autoreconf" "-vfi")))))))
1388 (native-inputs
1389 `(("autoconf" ,autoconf)
1390 ("automake" ,automake)
1391 ("libtool" ,libtool)
b94a6ca0 1392 ("gettext" ,gettext-minimal)
2d0fd07b
RW
1393 ("pkg-config" ,pkg-config)))
1394 (inputs
1395 `(("tk" ,tk)
1396 ("alsa-lib" ,alsa-lib)
1397 ("jack" ,jack-1)))
1398 (home-page "http://puredata.info")
1399 (synopsis "Visual programming language for artistic performances")
1400 (description
1401 "Pure Data (aka Pd) is a visual programming language. Pd enables
1402musicians, visual artists, performers, researchers, and developers to create
1403software graphically, without writing lines of code. Pd is used to process
1404and generate sound, video, 2D/3D graphics, and interface sensors, input
1405devices, and MIDI. Pd can easily work over local and remote networks to
1406integrate wearable technology, motor systems, lighting rigs, and other
1407equipment. Pd is suitable for learning basic multimedia processing and visual
1408programming methods as well as for realizing complex systems for large-scale
1409projects.")
1410 (license license:bsd-3)))
821664f1 1411
aacb52fb
RW
1412(define-public portmidi
1413 (package
1414 (name "portmidi")
1415 (version "217")
1416 (source (origin
1417 (method url-fetch)
1418 (uri (string-append "mirror://sourceforge/portmedia/portmidi/"
1419 version "/portmidi-src-" version ".zip"))
1420 (sha256
1421 (base32
1422 "03rfsk7z6rdahq2ihy5k13qjzgx757f75yqka88v3gc0pn9ais88"))
1423 (patches (list (search-patch "portmidi-modular-build.patch")))))
1424 (build-system cmake-build-system)
1425 (arguments
1426 `(#:tests? #f ; tests cannot be linked
1427 #:configure-flags
1428 (list "-DPORTMIDI_ENABLE_JAVA=Off"
1429 "-DCMAKE_BUILD_TYPE=Release" ; needed to have PMALSA set
1430 "-DPORTMIDI_ENABLE_TEST=Off"))) ; tests fail linking
1431 (inputs
1432 `(("alsa-lib" ,alsa-lib)))
1433 (native-inputs
1434 `(("unzip" ,unzip)))
1435 (home-page "http://portmedia.sourceforge.net/portmidi/")
1436 (synopsis "Library for MIDI I/O")
1437 (description
1438 "PortMidi is a library supporting real-time input and output of MIDI data
1439using a system-independent interface.")
1440 (license license:expat)))
f65d59fc 1441
38098bf7
RW
1442(define-public portmidi-for-extempore
1443 (package (inherit portmidi)
1444 (name "portmidi-for-extempore")
1445 (version "217")
1446 (source (origin
1447 (method url-fetch)
1448 (uri (string-append "https://github.com/extemporelang/portmidi/"
1449 "archive/" version ".tar.gz"))
1450 (file-name (string-append name "-" version ".tar.gz"))
1451 (sha256
1452 (base32
1453 "0gjikwciyr8kk4y3qiv1pcq58xpgw38ql1m2gs6g0qc1s8sx4235"))))
1454 (build-system cmake-build-system)
1455 (arguments `(#:tests? #f)) ; no tests
1456 (native-inputs '())
39162ee4
RW
1457 ;; Extempore refuses to build on architectures other than x86_64
1458 (supported-systems '("x86_64-linux"))
38098bf7
RW
1459 (home-page "https://github.com/extemporelang/portmidi/")))
1460
f65d59fc
RW
1461(define-public python-pyportmidi
1462 (package
1463 (name "python-pyportmidi")
1464 (version (package-version portmidi))
1465 (source (package-source portmidi))
1466 (build-system python-build-system)
1467 (arguments
1468 `(#:tests? #f ; no tests included
1469 #:phases
1470 (modify-phases %standard-phases
1471 (add-after 'unpack 'enter-dir
1472 (lambda _ (chdir "pm_python") #t))
1473 (add-after 'enter-dir 'fix-setup.py
1474 (lambda _
1475 (substitute* "setup.py"
1476 ;; Use Python 3 syntax
1477 (("print (\".*\")" _ text)
1478 (string-append "print(" text ")\n"))
1479 ;; TODO.txt and CHANGES.txt don't exist
1480 (("CHANGES =.*") "CHANGES = \"\"\n")
1481 (("TODO =.*") "TODO = \"\"\n"))
1482 #t)))))
1483 (inputs
1484 `(("portmidi" ,portmidi)
f2516de2 1485 ("alsa-lib" ,alsa-lib)))
f65d59fc 1486 (native-inputs
f2516de2
HG
1487 `(("python-cython" ,python-cython)
1488 ("unzip" ,unzip)))
f65d59fc
RW
1489 (home-page "http://portmedia.sourceforge.net/portmidi/")
1490 (synopsis "Python bindings to PortMidi")
1491 (description
1492 "This package provides Python bindings to the PortMidi library.")
1493 (license license:expat)))
aacb52fb 1494
821664f1
RW
1495(define-public frescobaldi
1496 (package
1497 (name "frescobaldi")
4b2eede4 1498 (version "2.19.0")
821664f1
RW
1499 (source (origin
1500 (method url-fetch)
1501 (uri (string-append
1502 "https://github.com/wbsoft/frescobaldi/releases/download/v"
1503 version "/frescobaldi-" version ".tar.gz"))
1504 (sha256
1505 (base32
4b2eede4 1506 "1rnk8i8dlshzx16n2qxcsqcs7kywgyazzyzw2vy4vp2gsm9vs9ml"))))
821664f1 1507 (build-system python-build-system)
a19a6d3a 1508 (arguments `(#:tests? #f)) ; no tests included
821664f1
RW
1509 (inputs
1510 `(("lilypond" ,lilypond)
6855b347 1511 ("portmidi" ,portmidi)
821664f1
RW
1512 ("python-pyqt-4" ,python-pyqt-4)
1513 ("python-ly" ,python-ly)
6855b347 1514 ("python-pyportmidi" ,python-pyportmidi)
821664f1
RW
1515 ("poppler" ,poppler)
1516 ("python-poppler-qt4" ,python-poppler-qt4)
1517 ("python-sip" ,python-sip)))
1518 (home-page "http://www.frescobaldi.org/")
1519 (synopsis "LilyPond sheet music text editor")
1520 (description
1521 "Frescobaldi is a LilyPond sheet music text editor with syntax
1522highlighting and automatic completion. Among other things, it can render
1523scores next to the source, can capture input from MIDI or read MusicXML and
1524ABC files, has a MIDI player for proof-listening, and includes a documentation
1525browser.")
1526 (license license:gpl2+)))
ddfddb0c 1527
bf76d780
RW
1528(define-public drumstick
1529 (package
1530 (name "drumstick")
382aacc5 1531 (version "1.1.0")
bf76d780
RW
1532 (source (origin
1533 (method url-fetch)
1534 (uri (string-append "mirror://sourceforge/drumstick/"
1535 version "/drumstick-" version ".tar.bz2"))
1536 (sha256
1537 (base32
382aacc5 1538 "13pkfqrav30bbcddgf1imd7jk6lpqbxkz1qv31718pdl446jq7df"))))
bf76d780
RW
1539 (build-system cmake-build-system)
1540 (arguments
1541 `(#:tests? #f ; no test target
1542 #:configure-flags '("-DLIB_SUFFIX=")
1543 #:phases
1544 (modify-phases %standard-phases
1545 (add-before 'configure 'fix-docbook
1546 (lambda* (#:key inputs #:allow-other-keys)
1547 (substitute* "cmake_admin/CreateManpages.cmake"
1548 (("http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl")
1549 (string-append (assoc-ref inputs "docbook-xsl")
1550 "/xml/xsl/docbook-xsl-"
1551 ,(package-version docbook-xsl)
1552 "/manpages/docbook.xsl")))
1553 #t)))))
1554 (inputs
ca1cab82
EF
1555 `(("qtbase" ,qtbase)
1556 ("qtsvg" ,qtsvg)
bf76d780
RW
1557 ("alsa-lib" ,alsa-lib)
1558 ("fluidsynth" ,fluidsynth)))
1559 (native-inputs
1560 `(("pkg-config" ,pkg-config)
1561 ("libxslt" ,libxslt) ;for xsltproc
1562 ("docbook-xsl" ,docbook-xsl)
1563 ("doxygen" ,doxygen)))
1564 (home-page "http://drumstick.sourceforge.net/")
1565 (synopsis "C++ MIDI library")
1566 (description
1567 "Drumstick is a set of MIDI libraries using C++/Qt5 idioms and style. It
1568includes a C++ wrapper around the ALSA library sequencer interface. A
1569complementary library provides classes for processing SMF (Standard MIDI
1570files: .MID/.KAR), Cakewalk (.WRK), and Overture (.OVE) file formats. A
1571multiplatform realtime MIDI I/O library is also provided with various output
1572backends, including ALSA, OSS, Network and FluidSynth.")
1573 (license license:gpl2+)))
1574
ddfddb0c
RW
1575(define-public zynaddsubfx
1576 (package
1577 (name "zynaddsubfx")
4908ae48 1578 (version "3.0.1")
ddfddb0c
RW
1579 (source (origin
1580 (method url-fetch)
1581 (uri (string-append
1582 "mirror://sourceforge/zynaddsubfx/zynaddsubfx/"
138e7697 1583 version "/zynaddsubfx-" version ".tar.bz2"))
ddfddb0c
RW
1584 (sha256
1585 (base32
4908ae48 1586 "1qijvlbv41lnqaqbp6gh1i42xzf1syviyxz8wr39xbz55cw7y0d8"))))
ddfddb0c 1587 (build-system cmake-build-system)
00dfc97c
RW
1588 (arguments
1589 `(#:phases
1590 (modify-phases %standard-phases
1591 ;; Move SSE compiler optimization flags from generic target to
1592 ;; athlon64 and core2 targets, because otherwise the build would fail
1593 ;; on non-Intel machines.
1594 (add-after 'unpack 'remove-sse-flags-from-generic-target
1595 (lambda _
1596 (substitute* "src/CMakeLists.txt"
1597 (("-msse -msse2 -mfpmath=sse") "")
1598 (("-march=(athlon64|core2)" flag)
1599 (string-append flag " -msse -msse2 -mfpmath=sse")))
1600 #t)))))
ddfddb0c
RW
1601 (inputs
1602 `(("liblo" ,liblo)
1603 ("ntk" ,ntk)
1ea7969f 1604 ("mesa" ,mesa)
ddfddb0c
RW
1605 ("alsa-lib" ,alsa-lib)
1606 ("jack" ,jack-1)
1607 ("fftw" ,fftw)
1608 ("minixml" ,minixml)
1609 ("libxpm" ,libxpm)
1610 ("zlib" ,zlib)))
1611 (native-inputs
1612 `(("pkg-config" ,pkg-config)))
1613 (home-page "http://zynaddsubfx.sf.net/")
1614 (synopsis "Software synthesizer")
1615 (description
1616 "ZynAddSubFX is a feature heavy realtime software synthesizer. It offers
1617three synthesizer engines, multitimbral and polyphonic synths, microtonal
1618capabilities, custom envelopes, effects, etc.")
1619 (license license:gpl2)))
c493679f
RW
1620
1621(define-public yoshimi
1622 (package
1623 (name "yoshimi")
5073ecf0 1624 (version "1.5.0")
c493679f
RW
1625 (source (origin
1626 (method url-fetch)
1627 (uri (string-append "mirror://sourceforge/yoshimi/"
1628 (version-major+minor version)
1629 "/yoshimi-" version ".tar.bz2"))
1630 (sha256
1631 (base32
5073ecf0 1632 "10s1i18xlmvqfrnr0zn2mj2b28i7p62dlqzzzkmpaapqj1gsgpz5"))))
c493679f
RW
1633 (build-system cmake-build-system)
1634 (arguments
1635 `(#:tests? #f ; there are no tests
1636 #:configure-flags
1637 (list (string-append "-DCMAKE_INSTALL_DATAROOTDIR="
1638 (assoc-ref %outputs "out") "/share"))
1639 #:phases
1640 (modify-phases %standard-phases
1641 (add-before 'configure 'enter-dir
1642 (lambda _ (chdir "src") #t))
1643 ;; Move SSE compiler optimization flags from generic target to
1644 ;; athlon64 and core2 targets, because otherwise the build would fail
1645 ;; on non-Intel machines.
1646 (add-after 'unpack 'remove-sse-flags-from-generic-target
1647 (lambda _
1648 (substitute* "src/CMakeLists.txt"
1649 (("-msse -msse2 -mfpmath=sse") "")
1650 (("-march=(athlon64|core2)" flag)
1651 (string-append flag " -msse -msse2 -mfpmath=sse")))
7fd30d1b
RW
1652 #t))
1653 ;; Yoshimi tries to find ncurses with pkg-config, but our ncurses
1654 ;; package does not install .pc files.
1655 (add-after 'unpack 'find-ncurses
1656 (lambda _
1657 (substitute* "src/CMakeLists.txt"
1658 (("LIBNCURSES REQUIRED") "LIBNCURSES")
1659 (("NCURSES REQUIRED") "NCURSES")
1660 (("FATAL_ERROR \"libncurses") "STATUS \"libncurses")
1661 (("\\$\\{NCURSES_LIBRARIES\\}") "ncurses"))
1662 #t)))))
c493679f
RW
1663 (inputs
1664 `(("boost" ,boost)
1665 ("fftwf" ,fftwf)
1666 ("alsa-lib" ,alsa-lib)
1667 ("jack" ,jack-1)
1668 ("fontconfig" ,fontconfig)
1669 ("minixml" ,minixml)
1670 ("mesa" ,mesa)
1671 ("fltk" ,fltk)
1672 ("lv2" ,lv2)
1673 ("readline" ,readline)
1674 ("ncurses" ,ncurses)
1675 ("cairo" ,cairo)
1676 ("zlib" ,zlib)))
1677 (native-inputs
1678 `(("pkg-config" ,pkg-config)))
1679 (home-page "http://yoshimi.sourceforge.net/")
1680 (synopsis "Multi-paradigm software synthesizer")
1681 (description
1682 "Yoshimi is a fork of ZynAddSubFX, a feature heavy realtime software
1683synthesizer. It offers three synthesizer engines, multitimbral and polyphonic
1684synths, microtonal capabilities, custom envelopes, effects, etc. Yoshimi
1685improves on support for JACK features, such as JACK MIDI.")
1686 (license license:gpl2)))
658212eb 1687
e87cb754
RW
1688(define-public libgig
1689 (package
1690 (name "libgig")
1691 (version "4.0.0")
1692 (source (origin
1693 (method url-fetch)
1694 (uri (string-append "http://download.linuxsampler.org/packages/"
1695 "libgig-" version ".tar.bz2"))
1696 (sha256
1697 (base32
1698 "1wr8mwjmqpnyz6bx9757lspiii1zzn8zfbqsvn2ipzpgqkxv6kaz"))))
1699 (build-system gnu-build-system)
1700 (inputs
1701 `(("libuuid" ,util-linux)
1702 ("libsndfile" ,libsndfile)))
1703 (native-inputs
1704 `(("pkg-config" ,pkg-config)))
1705 (home-page "http://linuxsampler.org/libgig/")
1706 (synopsis "C++ library for working with Gigasampler (.gig) files")
1707 (description
1708 "Libgig is a C++ library for loading, modifying existing and creating new
1709Gigasampler (.gig) files and DLS (Downloadable Sounds) Level 1/2 files, KORG
1710sample based instruments (.KSF and .KMP files), SoundFont v2 (.sf2) files and
1711AKAI sampler data. The package includes a couple of command line tools based
1712on the library.")
1713 ;; The library and tools are released under the GPL, except the AKAI
1714 ;; classes which are released under the LGPL.
1715 (license (list license:gpl2+ license:lgpl2.1+))))
1716
a9f55bf2
RW
1717(define-public jack-keyboard
1718 (package
1719 (name "jack-keyboard")
1720 (version "2.5")
1721 (source
1722 (origin
1723 (method url-fetch)
1724 (uri (string-append "mirror://sourceforge/jack-keyboard/jack-keyboard/"
1725 version "/jack-keyboard-" version ".tar.gz"))
1726 (sha256
1727 (base32
1728 "0mzmg8aavybcfdlq2yd9d0vscqd6is5p6jzrgfpfm5j3xdcvh2s3"))))
1729 (build-system gnu-build-system)
1730 (inputs
1731 `(("jack" ,jack-1)
1732 ("lash" ,lash)
1733 ("gtk+" ,gtk+-2)))
1734 (native-inputs
1735 `(("pkg-config" ,pkg-config)))
1736 (home-page "http://jack-keyboard.sourceforge.net/")
1737 (synopsis "Virtual MIDI keyboard")
1738 (description "Jack-keyboard is a virtual MIDI keyboard, a program that
1739allows you to send JACK MIDI events (i.e. play) using your PC keyboard.")
1740 (license license:bsd-2)))
1741
658212eb
LF
1742(define-public cursynth
1743 (package
1744 (name "cursynth")
1745 (version "1.5")
1746 (source
1747 (origin
1748 (method url-fetch)
1749 (uri (string-append "mirror://gnu/cursynth/cursynth-"
1750 version ".tar.gz"))
1751 (sha256
1752 (base32 "1dhphsya41rv8z6yqcv9l6fwbslsds4zh1y56zizi39nd996d40v"))
fc1adab1 1753 (patches (search-patches "cursynth-wave-rand.patch"))))
658212eb
LF
1754 (build-system gnu-build-system)
1755 (native-inputs `(("pkg-config" ,pkg-config)))
1756 ;; TODO: See https://github.com/iyoko/cursynth/issues/4 which currently
1757 ;; prevents us from using pulseaudio
1758 (inputs `(("ncurses" ,ncurses)
1759 ("alsa" ,alsa-lib)))
6fd52309 1760 (home-page "https://www.gnu.org/software/cursynth/")
658212eb
LF
1761 (synopsis "Polyphonic and MIDI subtractive music synthesizer using curses")
1762 (description "GNU cursynth is a polyphonic synthesizer that runs
1763graphically in the terminal. It is built on a full-featured subtractive
1764synthesis engine. Notes and parameter changes may be entered via MIDI or the
1765computer's keyboard.")
1766 (license license:gpl3+)))
a763ce7d
RW
1767
1768(define-public qtractor
1769 (package
1770 (name "qtractor")
873253dd 1771 (version "0.8.1")
a763ce7d
RW
1772 (source (origin
1773 (method url-fetch)
1774 (uri (string-append "http://downloads.sourceforge.net/qtractor/"
1775 "qtractor-" version ".tar.gz"))
1776 (sha256
1777 (base32
873253dd 1778 "1pvs9r5ykfaci900p0kz2xc5xsrswnwwbcl2chsvd98f1ns4vwds"))))
a763ce7d
RW
1779 (build-system gnu-build-system)
1780 (arguments `(#:tests? #f)) ; no "check" target
1781 (inputs
1782 `(("qt" ,qt)
1783 ("alsa-lib" ,alsa-lib)
1784 ("jack" ,jack-1)
1785 ("libsndfile" ,libsndfile)
1786 ("ladspa" ,ladspa)
1787 ("lv2" ,lv2)
1788 ("lilv" ,lilv)
1789 ("suil" ,suil)
1790 ("libsamplerate" ,libsamplerate)
1791 ("libvorbis" ,libvorbis)
1792 ("libmad" ,libmad)
1793 ("rubberband" ,rubberband)
1794 ("liblo" ,liblo)
1795 ("zlib" ,zlib)))
1796 (native-inputs
1797 `(("pkg-config" ,pkg-config)))
8071bbbc 1798 (home-page "http://qtractor.org/")
a763ce7d
RW
1799 (synopsis "Audio/MIDI multi-track sequencer")
1800 (description
1801 "Qtractor is an Audio/MIDI multi-track sequencer application. It uses
1802JACK for audio and ALSA sequencer for MIDI as multimedia infrastructures and
1803follows a traditional multi-track tape recorder control paradigm.")
1804 (license license:gpl2+)))
aa0edd3f 1805
849c3d03
RW
1806(define-public ams-lv2
1807 (package
1808 (name "ams-lv2")
1809 (version "1.2.0")
1810 (source
1811 (origin
1812 (method url-fetch)
1813 (uri (string-append "https://github.com/blablack/ams-lv2/"
1814 "archive/" version ".tar.gz"))
1815 (file-name (string-append name "-" version ".tar.gz"))
1816 (sha256
1817 (base32
1818 "1392spswkhfd38fggf584wb3m8aqpg7csfrs9zxnzyvhgmp0fgqk"))))
1819 (build-system waf-build-system)
8a3ce2c7
EF
1820 (arguments
1821 `(#:phases
1822 (modify-phases %standard-phases
1823 (add-after 'unpack 'remove-sse-flags
1824 (lambda* (#:key system #:allow-other-keys)
1825 (when (not (or (string-prefix? "x86_64" system)
1826 (string-prefix? "i686" system)))
1827 (substitute* "wscript"
1828 (("'-msse', '-mfpmath=sse', ") ""))
1829 #t))))
1830 #:tests? #f)) ; no tests
849c3d03
RW
1831 (inputs
1832 `(("lv2" ,lv2)
1833 ("lvtk" ,lvtk)
1834 ("gtkmm" ,gtkmm-2)
1835 ("gtk" ,gtk+-2)
1836 ("cairo" ,cairo)
1837 ("fftw" ,fftw)))
1838 (native-inputs
1839 `(("pkg-config" ,pkg-config)))
1840 (home-page "https://objectivewave.wordpress.com/ams-lv2/")
1841 (synopsis "Port of Alsa Modular Synth internal modules into LV2")
1842 (description "This set of LV2 plugins is a port of the internal modules
1843found in Alsa Modular Synth. These plugins are used to create modular
1844synthesizers and contain: VCO, VCF, VCA, LFO, slew limiter, envelopes, sample
1845and hold, etc.")
1846 (license license:gpl2)))
1847
aed023ff
RW
1848(define-public gxtuner
1849 (package
1850 (name "gxtuner")
1851 (version "2.3")
1852 (source (origin
1853 (method url-fetch)
1854 (uri (string-append "https://github.com/brummer10/gxtuner/"
1855 "archive/v" version ".tar.gz"))
1856 (file-name (string-append name "-" version ".tar.gz"))
1857 (sha256
1858 (base32
1859 "1abpxiydn4c9wssz6895hnad9ipkcy3rkgzbnanvwb46nm44x6if"))))
1860 (build-system gnu-build-system)
1861 (arguments
1862 `(#:make-flags
1863 (list (string-append "PREFIX=" (assoc-ref %outputs "out"))
1864 (string-append "INCLUDE_L_DIR="
1865 (assoc-ref %build-inputs "zita-resampler")
1866 "/include/"))
1867 #:phases
1868 (modify-phases %standard-phases
1869 (delete 'configure))))
1870 (inputs
1871 `(("gtk+" ,gtk+-2)
1872 ("jack" ,jack-1)
1873 ("fftwf" ,fftwf)
1874 ("cairo" ,cairo)
1875 ("zita-resampler" ,zita-resampler)))
1876 (native-inputs
1877 `(("pkg-config" ,pkg-config)))
1878 (home-page "https://github.com/brummer10/gxtuner")
1879 (synopsis "Guitar tuner")
1880 (description "GXtuner is a simple guitar tuner for JACK with an
1881analogue-like user interface.")
1882 (license license:gpl2+)))
1883
c2c9e748
RW
1884(define-public mod-host
1885 ;; The last release was in 2014 but since then more than 140 commits have
1886 ;; been made.
1887 (let ((commit "72aca771e3a4e3889641b9bab84985586c9bb926")
1888 (revision "1"))
1889 (package
1890 (name "mod-host")
1891 (version (string-append "0.10.6-" revision "." (string-take commit 9)))
1892 (source (origin
1893 (method git-fetch)
1894 (uri (git-reference
1895 (url "https://github.com/moddevices/mod-host")
1896 (commit commit)))
1897 (sha256
1898 (base32
1899 "19szi8cy65jlchbrmbjbma03g6gxj9zyyp4dgw1k06r0cxbx82gq"))
1900 (file-name (string-append name "-" version "-checkout"))))
1901 (build-system gnu-build-system)
1902 (arguments
1903 `(#:tests? #f ; no tests included
1904 #:make-flags
1905 (list (string-append "PREFIX=" (assoc-ref %outputs "out"))
1906 "CC=gcc")
1907 #:phases
1908 (modify-phases %standard-phases
1909 (delete 'configure)
1910 (add-after 'unpack 'fix-jack-installation-directory
1911 (lambda _
1912 ;; Do not attempt to install files to output of "jack" package.
1913 (substitute* "Makefile"
1914 (("\\$\\(shell pkg-config --variable=libdir jack\\)")
1915 "lib"))
1916 #t)))))
1917 (inputs
1918 `(("lilv" ,lilv)
c96cb01a
DC
1919 ("fftw" ,fftw)
1920 ("fftwf" ,fftwf)
c2c9e748
RW
1921 ("lv2" ,lv2)
1922 ("jack" ,jack-1)
1923 ("readline" ,readline)))
1924 (native-inputs
1925 `(("pkg-config" ,pkg-config)
1926 ("python" ,python-2)))
1927 (home-page "https://github.com/moddevices/mod-host")
1928 (synopsis "LV2 host for Jack controllable via socket or command line")
1929 (description "mod-host is an LV2 plugin host for JACK, controllable via
1930socket or command line.")
1931 (license license:gpl3+))))
1932
aa0edd3f
AM
1933(define-public pianobar
1934 (package
1935 (name "pianobar")
1936 (version "2015.11.22")
1937 (source (origin
1938 (method url-fetch)
1939 (uri (string-append "https://github.com/PromyLOPh/"
1940 name "/archive/" version ".tar.gz"))
1941 (file-name (string-append name "-" version ".tar.gz"))
1942 (sha256
1943 (base32
1944 "022df19bhxqvkhy0qy21xahba5s1fm17b13y0p9p9dnf2yl44wfv"))))
1945 (build-system gnu-build-system)
1946 (arguments
1947 `(#:tests? #f ; no tests
1948 #:make-flags (list "CC=gcc" "CFLAGS=-std=c99"
1949 (string-append "PREFIX=" %output))
1950 #:phases (modify-phases %standard-phases
1951 (delete 'configure))))
1952 (inputs
1953 `(("ao" ,ao)
1954 ("curl" ,curl)
1955 ("libgcrypt" ,libgcrypt)
1956 ("json-c" ,json-c)
1957 ("ffmpeg" ,ffmpeg)))
1958 (native-inputs
1959 `(("pkg-config" ,pkg-config)))
1960 (home-page "http://6xq.net/projects/pianobar/")
1961 (synopsis "Console-based pandora.com player")
1962 (description "pianobar is a console-based music player for the
1963personalized online radio pandora.com. It has configurable keys for playing
1964and managing stations, can be controlled remotely via fifo, and can run
1965event-based scripts for scrobbling, notifications, etc.")
1966 (license license:expat)))
3f7a182d
LF
1967
1968(define-public python-mutagen
1969 (package
1970 (name "python-mutagen")
653439c6 1971 (version "1.36")
3f7a182d
LF
1972 (source (origin
1973 (method url-fetch)
1974 (uri (pypi-uri "mutagen" version))
1975 (sha256
1976 (base32
653439c6 1977 "1kabb9b81hgvpd3wcznww549vss12b1xlvpnxg1r6n4c7gikgvnp"))))
3f7a182d 1978 (build-system python-build-system)
4228a79e
LF
1979 (native-inputs
1980 `(("python-pytest" ,python-pytest)))
3f7a182d
LF
1981 (home-page "https://bitbucket.org/lazka/mutagen")
1982 (synopsis "Read and write audio tags")
1983 (description "Mutagen is a Python module to handle audio metadata. It
1984supports ASF, FLAC, M4A, Monkey’s Audio, MP3, Musepack, Ogg FLAC, Ogg Speex, Ogg
1985Theora, Ogg Vorbis, True Audio, WavPack and OptimFROG audio files. All versions
1986of ID3v2 are supported, and all standard ID3v2.4 frames are parsed. It can read
1987Xing headers to accurately calculate the bitrate and length of MP3s. ID3 and
1988APEv2 tags can be edited regardless of audio format. It can also manipulate Ogg
1989streams on an individual packet/page level.")
1990 (license license:gpl2))) ; "later version" never mentioned
1991
1992(define-public python2-mutagen
1993 (package-with-python2 python-mutagen))
8975de88
LF
1994
1995(define-public python-musicbrainzngs
1996 (package
1997 (name "python-musicbrainzngs")
daedf34d 1998 (version "0.6")
8975de88
LF
1999 (source (origin
2000 (method url-fetch)
2001 (uri (pypi-uri "musicbrainzngs" version))
2002 (sha256
2003 (base32
daedf34d 2004 "1dddarpjawryll2wss65xq3v9q8ln8dan7984l5dxzqx88d2dvr8"))))
8975de88 2005 (build-system python-build-system)
daedf34d
LF
2006 (arguments
2007 '(;; The tests fail suffer from race conditions:
2008 ;; https://github.com/alastair/python-musicbrainzngs/issues/211
2009 #:tests? #f))
8975de88
LF
2010 (home-page "https://python-musicbrainzngs.readthedocs.org/")
2011 (synopsis "Python bindings for MusicBrainz NGS webservice")
2012 (description "Musicbrainzngs implements Python bindings of the MusicBrainz
2013web service. This library can be used to retrieve music metadata from the
2014MusicBrainz database.")
2015 ;; 'musicbrainzngs/compat.py' is ISC licensed.
2016 (license (list license:bsd-2 license:isc))))
2017
2018(define-public python2-musicbrainzngs
2019 (package-with-python2 python-musicbrainzngs))
e8fee648 2020
a2eab422 2021(define-public python2-pyechonest
e8fee648 2022 (package
a2eab422 2023 (name "python2-pyechonest")
e8fee648
LF
2024 (version "9.0.0")
2025 (source (origin
2026 (method url-fetch)
2027 (uri (pypi-uri "pyechonest" version))
2028 (sha256
2029 (base32
2030 "1584nira3rkiman9dm81kdshihmkj21s8navndz2l8spnjwb790x"))))
2031 (build-system python-build-system)
a2eab422
LF
2032 (arguments
2033 `(;; Python 3 is not supported:
2034 ;; https://github.com/echonest/pyechonest/issues/42
2035 #:python ,python-2))
e8fee648
LF
2036 (home-page "https://github.com/echonest/pyechonest")
2037 (synopsis "Python interface to The Echo Nest APIs")
d3e3468f
LF
2038 (description "Pyechonest is a Python library for the Echo Nest API. With
2039Pyechonest you have Python access to the entire set of API methods including:
e8fee648
LF
2040
2041@enumerate
2042@item artist - search for artists by name, description, or attribute, and get
2043back detailed information about any artist including audio, similar artists,
2044blogs, familiarity, hotttnesss, news, reviews, urls and video.
2045@item song - search songs by artist, title, description, or attribute (tempo,
2046duration, etc) and get detailed information back about each song, such as
2047hotttnesss, audio_summary, or tracks.
2048@item track - upload a track to the Echo Nest and receive summary information
2049about the track including key, duration, mode, tempo, time signature along with
2050detailed track info including timbre, pitch, rhythm and loudness information.
2051@end enumerate\n")
a2eab422 2052 (license license:bsd-3)))
acd7351f
LF
2053
2054(define-public python-pylast
2055 (package
2056 (name "python-pylast")
b04d9b97 2057 (version "1.6.0")
acd7351f
LF
2058 (source (origin
2059 (method url-fetch)
2060 (uri (pypi-uri "pylast" version))
2061 (sha256
2062 (base32
b04d9b97 2063 "0bml11gfkxqd3i2jxkn5k2xllc4rvxjcyhs8an05gcyy1zp2bwvb"))))
acd7351f 2064 (build-system python-build-system)
810f8983
MB
2065 (arguments
2066 '(#:tests? #f)) ; FIXME: Requires unpackaged python-flaky.
acd7351f
LF
2067 (native-inputs
2068 `(("python-coverage" ,python-coverage)
2069 ("python-mock" ,python-mock)
2070 ("python-pep8" ,python-pep8)
2071 ("python-pytest" ,python-pytest)
2072 ("python-pyflakes" ,python-pyflakes)
2073 ("python-pyyaml" ,python-pyyaml)))
2074 (propagated-inputs
2075 `(("python-six" ,python-six)))
2076 (home-page "https://github.com/pylast/pylast")
2077 (synopsis "Python interface to Last.fm and Libre.fm")
2078 (description "A Python interface to Last.fm and other API-compatible
2079websites such as Libre.fm.")
5c31f4aa 2080 (license license:asl2.0)))
acd7351f
LF
2081
2082(define-public python2-pylast
5c31f4aa 2083 (package-with-python2 python-pylast))
3bf429af
LF
2084
2085(define-public beets
2086 (package
2087 (name "beets")
541b3f59 2088 (version "1.4.3")
3bf429af
LF
2089 (source (origin
2090 (method url-fetch)
23319ed6 2091 (uri (pypi-uri "beets" version))
3bf429af
LF
2092 (sha256
2093 (base32
541b3f59 2094 "0r743a2pv1iyw50jsdl01v2ml3pdkhdp920a5d1wsacak48vwgxr"))))
3bf429af
LF
2095 (build-system python-build-system)
2096 (arguments
0d48ff81 2097 `(#:phases
3bf429af
LF
2098 (modify-phases %standard-phases
2099 (add-after 'unpack 'set-HOME
36c2c8c8
LF
2100 (lambda _ (setenv "HOME" (string-append (getcwd) "/tmp"))))
2101 (replace 'check
2102 (lambda _ (zero? (system* "nosetests" "-v")))))))
3bf429af 2103 (native-inputs
0d48ff81
LF
2104 `(("python-beautifulsoup4" ,python-beautifulsoup4)
2105 ("python-flask" ,python-flask)
2106 ("python-mock" ,python-mock)
2107 ("python-mpd2" ,python-mpd2)
2108 ("python-nose" ,python-nose)
2109 ("python-pathlib" ,python-pathlib)
2110 ("python-pyxdg" ,python-pyxdg)
2111 ("python-pylast" ,python-pylast)
2112 ("python-rarfile" ,python-rarfile)
2113 ("python-responses" ,python-responses)))
3bf429af 2114 ;; TODO: Install optional plugins and dependencies.
b3470031 2115 (inputs
0d48ff81 2116 `(("python-discogs-client" ,python-discogs-client)
0d48ff81
LF
2117 ("python-jellyfish" ,python-jellyfish)
2118 ("python-munkres" ,python-munkres)
2119 ("python-musicbrainzngs" ,python-musicbrainzngs)
2120 ("python-mutagen" ,python-mutagen)
2121 ("python-pyyaml" ,python-pyyaml)
2122 ("python-unidecode" ,python-unidecode)))
3bf429af
LF
2123 (home-page "http://beets.io")
2124 (synopsis "Music organizer")
2125 (description "The purpose of beets is to get your music collection right
2126once and for all. It catalogs your collection, automatically improving its
2127metadata as it goes using the MusicBrainz database. Then it provides a variety
2128of tools for manipulating and accessing your music.")
2129 (license license:expat)))
21d18113
KY
2130
2131(define-public milkytracker
2132 (package
2133 (name "milkytracker")
2134 (version "0.90.86")
2135 (source (origin
2136 (method url-fetch)
1b35fea1 2137 (uri (string-append "http://milkytracker.titandemo.org/files/"
21d18113
KY
2138 name "-" version ".tar.bz2"))
2139 (sha256
2140 (base32
2141 "1v9vp8vi24lkagfpr92c128whvakwgrm9pq2zf6ijpl5sh7014zb"))))
2142 (build-system gnu-build-system)
2143 (arguments
2144 `(#:make-flags '("CXXFLAGS=-lasound")))
2145 (inputs
2146 `(("alsa-lib" ,alsa-lib)
2147 ("jack" ,jack-1)
2148 ("sdl" ,sdl)
2149 ("zlib" ,zlib)))
2150 (native-inputs
2151 `(("pkg-config" ,pkg-config)))
2152 (synopsis "Music tracker for working with .MOD/.XM module files")
2153 (description "MilkyTracker is a music application for creating .MOD and .XM
2154module files. It attempts to recreate the module replay and user experience of
2155the popular DOS program Fasttracker II, with special playback modes available
2156for improved Amiga ProTracker 2/3 compatibility.")
1b35fea1 2157 (home-page "http://milkytracker.titandemo.org/")
21d18113
KY
2158 ;; 'src/milkyplay' is under Modified BSD, the rest is under GPL3 or later.
2159 (license (list license:bsd-3 license:gpl3+))))
13416a10 2160
89bcf3fc
KK
2161(define-public schismtracker
2162 (package
2163 (name "schismtracker")
9342c5a0 2164 (version "20160913")
89bcf3fc
KK
2165 (source (origin
2166 (method url-fetch)
2167 (uri (string-append
2168 "https://github.com/" name "/" name "/archive/"
2169 version ".tar.gz"))
2170 (file-name (string-append name "-" version ".tar.gz"))
2171 (sha256
2172 (base32
9342c5a0 2173 "1sc813qi4gl6mf7xp8rrarvyigzhxv3qdrryqsy42yxsb2jcwbrw"))
89bcf3fc
KK
2174 (modules '((guix build utils)))
2175 (snippet
2176 ;; Remove use of __DATE__ and __TIME__ for reproducibility.
2177 `(substitute* "schism/version.c"
9342c5a0 2178 (("Schism Tracker built %s %s.*$")
89bcf3fc
KK
2179 (string-append "Schism Tracker version " ,version "\");"))))))
2180 (build-system gnu-build-system)
2181 (arguments
2182 `(#:phases
2183 (modify-phases %standard-phases
2184 (add-after 'unpack 'autoconf
2185 (lambda _ (zero? (system* "autoreconf" "-vfi"))))
2186 (add-before 'configure 'link-libm
2187 (lambda _ (setenv "LIBS" "-lm") #t)))))
2188 (native-inputs
2189 `(("autoconf" ,autoconf)
2190 ("automake" ,automake)
2191 ("python" ,python)))
2192 (inputs
2193 `(("alsa-lib" ,alsa-lib) ; for asound dependency
2194 ("libx11" ,libx11)
2195 ("libxext" ,libxext)
2196 ("sdl" ,sdl)))
2197 (home-page "http://schismtracker.org")
2198 (synopsis "Oldschool sample-based music composition tool")
2199 (description
2200 "Schism Tracker is a reimplementation of Impulse Tracker, a program used to
2201create high quality music without the requirements of specialized, expensive
2202equipment, and with a unique \"finger feel\" that is difficult to replicate in
2203part. The player is based on a highly modified version of the ModPlug engine,
2204with a number of bugfixes and changes to improve IT playback.")
2205 (license license:gpl2+)))
2206
13416a10
KY
2207(define-public moc
2208 (package
2209 (name "moc")
2fbc004f 2210 (version "2.5.2")
13416a10
KY
2211 (source (origin
2212 (method url-fetch)
2213 (uri (string-append "http://ftp.daper.net/pub/soft/"
2214 name "/stable/"
2215 name "-" version ".tar.bz2"))
2216 (sha256
2217 (base32
2fbc004f
KK
2218 "026v977kwb0wbmlmf6mnik328plxg8wykfx9ryvqhirac0aq39pk"))
2219 (modules '((guix build utils)))
2220 (snippet
2221 ;; Remove use of __DATE__ and __TIME__ for reproducibility.
2222 '(substitute* "main.c"
2223 (("printf \\(\" Built : %s\", __DATE__\\);") "")
2224 (("printf \\(\" %s\", __TIME__\\);") "")))))
13416a10
KY
2225 (build-system gnu-build-system)
2226 (inputs
2227 `(("alsa-lib" ,alsa-lib)
2228 ("curl" ,curl)
2229 ("faad2" ,faad2)
2230 ("ffmpeg" ,ffmpeg)
2231 ("file" ,file)
2232 ("jack" ,jack-1)
2233 ("libid3tag" ,libid3tag)
2234 ("libltdl" ,libltdl)
2235 ("libmodplug" ,libmodplug)
2236 ("libmpcdec" ,libmpcdec)
2237 ("libmad" ,libmad)
2238 ("ncurses" ,ncurses)
2239 ("openssl" ,openssl)
2240 ("sasl" ,cyrus-sasl)
2241 ("speex" ,speex)
2242 ("taglib" ,taglib)
2243 ("wavpack" ,wavpack)
2244 ("zlib" ,zlib)))
2245 (native-inputs
2246 `(("pkg-config" ,pkg-config)))
2247 (synopsis "Console audio player designed to be powerful and easy to use")
2248 (description
2249 "Music on Console is a console audio player that supports many file
2250formats, including most audio formats recognized by FFMpeg.")
2251 (home-page "http://moc.daper.net")
2252 (license license:gpl2+)))
6d3ef286
JF
2253
2254(define-public midicsv
2255 (package
2256 (name "midicsv")
2257 (version "1.1")
2258 (source (origin
2259 (method url-fetch)
2260 (uri (string-append "http://www.fourmilab.ch/webtools/midicsv/"
2261 name "-" version ".tar.gz"))
2262 (sha256
2263 (base32
2264 "1vvhk2nf9ilfw0wchmxy8l13hbw9cnpz079nsx5srsy4nnd78nkw"))))
2265 (build-system gnu-build-system)
2266 (arguments
2267 `(#:phases (modify-phases %standard-phases (delete 'configure))
2268 #:make-flags (list "CC=gcc" (string-append "INSTALL_DEST=" %output))))
2269 (synopsis "Convert MIDI files to and from CSV")
2270 (description
2271 "Midicsv reads a standard MIDI file and decodes it into a comma-separated
2272value file (CSV), which preserves all the information in the MIDI file. The
2273ASCII CSV file may be loaded into a spreadsheet or database application, or
2274processed by a program to transform the MIDI data (for example, to key
2275transpose a composition or extract a track from a multi-track sequence). A
2276CSV file in the format created by midicsv may be converted back into a
2277standard MIDI file with the csvmidi program.")
2278 (home-page "http://www.fourmilab.ch/webtools/midicsv/")
2279 (license license:public-domain)))
49604680
RW
2280
2281(define-public gx-guvnor-lv2
2282 (let ((commit "9f528a7623a201383e119bb6a2df32b18396a9d5")
2283 (revision "1"))
2284 (package
2285 (name "gx-guvnor-lv2")
2286 (version (string-append "0-" revision "." (string-take commit 9)))
2287 (source (origin
2288 (method git-fetch)
2289 (uri (git-reference
2290 (url "https://github.com/brummer10/GxGuvnor.lv2")
2291 (commit commit)))
2292 (sha256
2293 (base32
2294 "10zx84p2vd7i1yqc5ma9p17927265j4g0zfwv9rxladw0nm8y45k"))
2295 (file-name (string-append name "-" version "-checkout"))))
2296 (build-system gnu-build-system)
2297 (arguments
2298 `(;; The check target is used only to output a warning.
2299 #:tests? #f
2300 #:make-flags
2301 (list (string-append "DESTDIR=" (assoc-ref %outputs "out")))
2302 #:phases
2303 (modify-phases %standard-phases
2304 (replace 'configure
2305 (lambda _
2306 (substitute* "Makefile"
2307 (("INSTALL_DIR = .*") "INSTALL_DIR=/lib/lv2\n")
2308 ;; Avoid rebuilding everything
2309 (("install : all") "install:"))
2310 #t)))))
2311 (inputs
2312 `(("lv2" ,lv2)))
2313 (home-page "https://github.com/brummer10/GxGuvnor.lv2")
2314 (synopsis "Overdrive/distortion pedal simulation")
2315 (description "This package provides the LV2 plugin \"GxGuvnor\", a
2316simulation of an overdrive or distortion pedal for guitars.")
2317 ;; The LICENSE file says GPLv3 but the license headers in the files say
2318 ;; GPLv2 or later.
2319 (license license:gpl2+))))
85ae347e
RW
2320
2321(define-public gx-vbass-preamp-lv2
2322 (let ((commit "0e599abab10c7669dd444e5d06f671c2fc1b9c6c")
2323 (revision "1"))
2324 (package (inherit gx-guvnor-lv2)
2325 (name "gx-vbass-preamp-lv2")
2326 (version (string-append "0-" revision "." (string-take commit 9)))
2327 (source (origin
2328 (method git-fetch)
2329 (uri (git-reference
2330 (url "https://github.com/brummer10/GxVBassPreAmp.lv2")
2331 (commit commit)))
2332 (sha256
2333 (base32
2334 "1dzksdfrva666gpi62fd2ni9rhf18sl917f1894qr0b17pbdh9k1"))
2335 (file-name (string-append name "-" version "-checkout"))))
2336 (home-page "https://github.com/brummer10/GxVBassPreAmp.lv2")
2337 (synopsis "Simulation of the Vox Venue Bass 100 Pre Amp Section")
2338 (description "This package provides the LV2 plugin \"GxVBassPreAmp\", a
2339pre-amplifier simulation modelled after the 1984 Vox Venue Bass 100 Pre Amp
2340Section."))))
cdc7a021
RW
2341
2342(define-public gx-overdriver-lv2
2343 (let ((commit "ed71801987449414bf3adaa0dbfac68e8775f1ce")
2344 (revision "1"))
2345 (package (inherit gx-guvnor-lv2)
2346 (name "gx-overdriver-lv2")
2347 (version (string-append "0-" revision "." (string-take commit 9)))
2348 (source (origin
2349 (method git-fetch)
2350 (uri (git-reference
2351 (url "https://github.com/brummer10/GxOverDriver.lv2")
2352 (commit commit)))
2353 (sha256
2354 (base32
2355 "13j614jh525fbkby79nnzwj0z1ac0c9wclyn5pfqvkmx6a7j24r8"))
2356 (file-name (string-append name "-" version "-checkout"))))
2357 (home-page "https://github.com/brummer10/GxOverDriver.lv2")
2358 (synopsis "Overdrive effect with level and tone control")
2359 (description "This package provides the LV2 plugin \"GxOverDriver\", an
2360overdrive effect."))))
4d95cd30
RW
2361
2362(define-public gx-tone-mender-lv2
2363 (let ((commit "b6780b4a3e4782b3ed0e5882d6788f178aed138f")
2364 (revision "1"))
2365 (package (inherit gx-guvnor-lv2)
2366 (name "gx-tone-mender-lv2")
2367 (version (string-append "0-" revision "." (string-take commit 9)))
2368 (source (origin
2369 (method git-fetch)
2370 (uri (git-reference
2371 (url "https://github.com/brummer10/GxToneMender.lv2")
2372 (commit commit)))
2373 (sha256
2374 (base32
2375 "07qdcfsvv2vdnfnjh91pfgvjdcs5y91nvwfm8c0z8fp6b4bk7a9q"))
2376 (file-name (string-append name "-" version "-checkout"))))
2377 (home-page "https://github.com/brummer10/GxToneMender.lv2")
2378 (synopsis "Clean boost with a 3-knob tonestack")
2379 (description "This package provides the LV2 plugin \"GxToneMender\", a
2380clean boost effect with a 3-knob tonestack."))))
4d4bfdc2
RW
2381
2382(define-public gx-push-pull-lv2
2383 (let ((commit "7f76ae2068498643ac8671ee0930b13ee3fd8eb5")
2384 (revision "1"))
2385 (package (inherit gx-guvnor-lv2)
2386 (name "gx-push-pull-lv2")
2387 (version (string-append "0-" revision "." (string-take commit 9)))
2388 (source (origin
2389 (method git-fetch)
2390 (uri (git-reference
2391 (url "https://github.com/brummer10/GxPushPull.lv2")
2392 (commit commit)))
2393 (sha256
2394 (base32
2395 "12f5hwck2irph0gjbj8xy8jqcqdwb8l1hlwf29k0clz52h1jhb5q"))
2396 (file-name (string-append name "-" version "-checkout"))))
2397 (home-page "https://github.com/brummer10/GxPushPull.lv2")
2398 (synopsis "Octave up push pull transistor fuzz simulation")
2399 (description "This package provides the LV2 plugin \"GxPushPull\", a
2400simulation of a push pull transistor fuzz effect with added high octave."))))
3eb1a964
RW
2401
2402(define-public gx-suppa-tone-bender-lv2
2403 (let ((commit "4e6dc713ec24e7fcf5ea23b7e685af627c01b9c9")
2404 (revision "1"))
2405 (package (inherit gx-guvnor-lv2)
2406 (name "gx-suppa-tone-bender-lv2")
2407 (version (string-append "0-" revision "." (string-take commit 9)))
2408 (source (origin
2409 (method git-fetch)
2410 (uri (git-reference
2411 (url "https://github.com/brummer10/GxSuppaToneBender.lv2")
2412 (commit commit)))
2413 (sha256
2414 (base32
2415 "1i22xr252nkbazkwidll2zb3i96610gx65qn5djdkijlz7j77138"))
2416 (file-name (string-append name "-" version "-checkout"))))
2417 (home-page "https://github.com/brummer10/GxSuppaToneBender.lv2")
2418 (synopsis "Simulation of the Vox Suppa Tone Bender pedal")
2419 (description "This package provides the LV2 plugin
2420\"GxSuppaToneBender\", a simulation modelled after the Vox Suppa Tone Bender
2421pedal."))))
664f677f
RW
2422
2423(define-public gx-saturator-lv2
31de5e22
RW
2424 (let ((commit "0b581ac85c515325b9f16e51937cae6e1bf81a0a")
2425 (revision "2"))
664f677f
RW
2426 (package (inherit gx-guvnor-lv2)
2427 (name "gx-saturator-lv2")
2428 (version (string-append "0-" revision "." (string-take commit 9)))
2429 (source (origin
2430 (method git-fetch)
2431 (uri (git-reference
2432 (url "https://github.com/brummer10/GxSaturator.lv2")
2433 (commit commit)))
2434 (sha256
2435 (base32
31de5e22 2436 "1cl785pzq8zk55m1rnhfd6qsabci6kpf4pf002gwr91vagyq246z"))
664f677f
RW
2437 (file-name (string-append name "-" version "-checkout"))))
2438 (home-page "https://github.com/brummer10/GxSaturator.lv2")
2439 (synopsis "Saturation effect")
2440 (description "This package provides the LV2 plugin \"GxSaturator\", a
2441saturation effect."))))
89412238
RW
2442
2443(define-public gx-hyperion-lv2
dad6cb50
RW
2444 (let ((commit "6a096a664e553e551e179e85cf390bd1683410fb")
2445 (revision "2"))
89412238
RW
2446 (package (inherit gx-guvnor-lv2)
2447 (name "gx-hyperion-lv2")
2448 (version (string-append "0-" revision "." (string-take commit 9)))
2449 (source (origin
2450 (method git-fetch)
2451 (uri (git-reference
2452 (url "https://github.com/brummer10/GxHyperion.lv2")
2453 (commit commit)))
2454 (sha256
2455 (base32
dad6cb50 2456 "1ksv3wmylhwbf6kjl2lnhr14h9rfl291cfm21471gnb1r68yqfxh"))
89412238
RW
2457 (file-name (string-append name "-" version "-checkout"))))
2458 (home-page "https://github.com/brummer10/GxHyperion.lv2")
2459 (synopsis "Simulation of the Hyperion Fuzz pedal")
2460 (description "This package provides the LV2 plugin \"GxHyperion\", a
2461simulation of the Hyperion Fuzz pedal."))))
32536f00
RW
2462
2463(define-public gx-voodoo-fuzz-lv2
c1802b08
RW
2464 (let ((commit "aec7889b489385e8add06126e7a36ae2e26254b1")
2465 (revision "2"))
32536f00
RW
2466 (package (inherit gx-guvnor-lv2)
2467 (name "gx-voodoo-fuzz-lv2")
2468 (version (string-append "0-" revision "." (string-take commit 9)))
2469 (source (origin
2470 (method git-fetch)
2471 (uri (git-reference
2472 (url "https://github.com/brummer10/GxVoodoFuzz.lv2")
2473 (commit commit)))
2474 (sha256
2475 (base32
c1802b08 2476 "0mc41ldlv89069iaysnfiqxy5h5sr8mdi5cxm3ij5q5v4jv3viwx"))
32536f00
RW
2477 (file-name (string-append name "-" version "-checkout"))))
2478 (home-page "https://github.com/brummer10/GxVoodoFuzz.lv2")
2479 (synopsis "Fuzz effect modelled after the Voodoo Lab SuperFuzz")
2480 (description "This package provides the LV2 plugin \"GxVoodooFuzz\", a
2481simulation modelled after the Voodoo Lab SuperFuzz pedal. It's basically a
2482Bosstone circuit, followed by the tone control of the FoxToneMachine in
2483parallel with a DarkBooster, followed by a volume control."))))
29f63222
RW
2484
2485(define-public gx-super-fuzz-lv2
1df4d85f
RW
2486 (let ((commit "f40389575812c909007d140d327ce579930b71f7")
2487 (revision "2"))
29f63222
RW
2488 (package (inherit gx-guvnor-lv2)
2489 (name "gx-super-fuzz-lv2")
2490 (version (string-append "0-" revision "." (string-take commit 9)))
2491 (source (origin
2492 (method git-fetch)
2493 (uri (git-reference
2494 (url "https://github.com/brummer10/GxSuperFuzz.lv2")
2495 (commit commit)))
2496 (sha256
2497 (base32
1df4d85f 2498 "174bibj8qzm8zr6f5h8bcj94iry17zravk8flpdy84n6yg7cixji"))
29f63222
RW
2499 (file-name (string-append name "-" version "-checkout"))))
2500 (home-page "https://github.com/brummer10/GxSuperFuzz.lv2")
2501 (synopsis "Fuzz effect modelled after the UniVox SuperFuzz")
2502 (description "This package provides the LV2 plugin \"GxVoodooFuzz\", an
2503analog simulation of the UniVox SuperFuzz pedal. In this simulation the trim
2504pot, which is usualy in the housing, is exposed as a control parameter. It
2505adjusts the amount of harmonics."))))
40bffdfa
RW
2506
2507(define-public gx-vintage-fuzz-master-lv2
a7cd2d44
RW
2508 (let ((commit "0fec0bc1e8a8ba909a68e916e036138a3425d7db")
2509 (revision "2"))
40bffdfa
RW
2510 (package (inherit gx-guvnor-lv2)
2511 (name "gx-vintage-fuzz-master-lv2")
2512 (version (string-append "0-" revision "." (string-take commit 9)))
2513 (source (origin
2514 (method git-fetch)
2515 (uri (git-reference
2516 (url "https://github.com/brummer10/GxVintageFuzzMaster.lv2")
2517 (commit commit)))
2518 (sha256
2519 (base32
a7cd2d44 2520 "06szi6d2iwkygbw5azhwzhcl2as4lmk2gs9hanngsf46a1zbdcp7"))
40bffdfa
RW
2521 (file-name (string-append name "-" version "-checkout"))))
2522 (home-page "https://github.com/brummer10/GxVintageFuzzMaster.lv2")
2523 (synopsis "Fuzz effect simulation of the vintage Fuzz Master")
2524 (description "This package provides the LV2 plugin
2525\"GxVintageFuzzMaster\", a simulation of the vintage Fuzz Master pedal."))))
631f8175
RW
2526
2527(define-public gx-slow-gear-lv2
8e6f6503
RW
2528 (let ((commit "cb852e0426f4e6fe077e7f1ede73a4da335cfc5e")
2529 (revision "2"))
631f8175
RW
2530 (package (inherit gx-guvnor-lv2)
2531 (name "gx-slow-gear-lv2")
2532 (version (string-append "0-" revision "." (string-take commit 9)))
2533 (source (origin
2534 (method git-fetch)
2535 (uri (git-reference
2536 (url "https://github.com/brummer10/GxSlowGear.lv2")
2537 (commit commit)))
2538 (sha256
2539 (base32
8e6f6503 2540 "0dp7afi1r3kzciiyn1hrkz6arsq47ys9sx5g4b7xa9k1dv92ishp"))
631f8175
RW
2541 (file-name (string-append name "-" version "-checkout"))))
2542 (home-page "https://github.com/brummer10/GxSlowGear.lv2")
2543 (synopsis "Slow gear audio effect")
2544 (description "This package provides the LV2 plugin \"GxSlowGear\", a
2545slow gear audio effect to produce volume swells."))))
d75e8f5a
RW
2546
2547(define-public gx-switchless-wah-lv2
cfcef2c2
RW
2548 (let ((commit "7b08691203314612999f0ce2328cdc1161cd6665")
2549 (revision "2"))
d75e8f5a
RW
2550 (package (inherit gx-guvnor-lv2)
2551 (name "gx-switchless-wah-lv2")
2552 (version (string-append "0-" revision "." (string-take commit 9)))
2553 (source (origin
2554 (method git-fetch)
2555 (uri (git-reference
2556 (url "https://github.com/brummer10/GxSwitchlessWah.lv2")
2557 (commit commit)))
2558 (sha256
2559 (base32
cfcef2c2 2560 "04jqfpncmrrqn34p21w4v9m2x5a5wsqwbm4f3byxvq4vcibwxzk2"))
d75e8f5a
RW
2561 (file-name (string-append name "-" version "-checkout"))))
2562 (home-page "https://github.com/brummer10/GxSwitchlessWah.lv2")
2563 (synopsis "Wah emulation with switchless activation")
2564 (description "This package provides the LV2 plugin \"GxSwitchlessWah\",
2565a simulation of an analog Wah pedal with switchless activation."))))
84d53724
RW
2566
2567(define-public mod-utilities
2568 (let ((commit "7cdeeac26ae682730740105ece121d4dddb8ba3f")
2569 (revision "1"))
2570 (package
2571 (name "mod-utilities")
2572 (version (string-append "0-" revision "." (string-take commit 9)))
2573 (source (origin
2574 (method git-fetch)
2575 (uri (git-reference
2576 (url "https://github.com/moddevices/mod-utilities.git")
2577 (commit commit)))
2578 (sha256
2579 (base32
2580 "1ilnkbrmwrszxvc21qlb86h29yz7cnc6rcp0jmna1y693ny2qhf4"))
2581 (file-name (string-append name "-" version "-checkout"))))
2582 (build-system gnu-build-system)
2583 (arguments
2584 `(#:tests? #f ; there are no tests
2585 #:make-flags
2586 (list (string-append "INSTALL_PATH="
2587 (assoc-ref %outputs "out")
2588 "/lib/lv2"))
2589 #:phases
2590 (modify-phases %standard-phases
2591 (delete 'configure))))
2592 (inputs
2593 `(("lv2" ,lv2)))
2594 (home-page "https://github.com/moddevices/mod-utilities")
2595 (synopsis "LV2 utility plugins")
2596 (description "This package provides LV2 audio utility plugins, such as
2597filters, crossovers, simple gain plugins without zipper noise, switch box
2598plugins, a switch trigger, a toggle switch, and a peakmeter.")
2599 (license license:gpl2+))))
d3db5efb 2600
951581a2
RW
2601(define-public ingen
2602 (let ((commit "fd147d0b888090bfb897505852c1f25dbdf77e18")
2603 (revision "1"))
2604 (package
2605 (name "ingen")
2606 (version (string-append "0.0.0-" revision "."
2607 (string-take commit 9)))
2608 (source
2609 (origin
2610 (method git-fetch)
2611 (uri (git-reference
2612 (url "http://git.drobilla.net/ingen.git")
2613 (commit commit)))
2614 (file-name (string-append name "-" version "-checkout"))
2615 (sha256
2616 (base32
2617 "1qmg79962my82c43vyrv5sxbqci9c7gc2s9bwaaqd0fcf08xcz1z"))))
2618 (build-system waf-build-system)
2619 (arguments
2620 `(#:tests? #f ; no "check" target
2621 #:configure-flags (list "--no-webkit")
2622 #:phases
2623 (modify-phases %standard-phases
2624 (add-after 'unpack 'patch-wscript
2625 (lambda* (#:key outputs #:allow-other-keys)
2626 (let ((out (assoc-ref outputs "out")))
2627 (substitute* "wscript"
2628 ;; FIXME: Our version of lv2specgen.py does not behave as
2629 ;; expected. Maybe this requires a development version of
2630 ;; LV2.
2631 (("lv2specgen.py") "touch ingen.lv2/ingen.html; echo")
2632 ;; Add libraries to RUNPATH.
2633 (("^(.+)target.*= 'src/ingen/ingen'," line prefix)
2634 (string-append prefix
2635 "linkflags=[\"-Wl,-rpath="
2636 out "/lib" "\"]," line)))
2637 (substitute* '("src/wscript"
2638 "src/server/wscript")
2639 ;; Add libraries to RUNPATH.
2640 (("bld.env.PTHREAD_LINKFLAGS" line)
2641 (string-append line
2642 " + [\"-Wl,-rpath=" out "/lib" "\"]")))
2643 (substitute* "src/client/wscript"
2644 ;; Add libraries to RUNPATH.
2645 (("^(.+)target.*= 'ingen_client'," line prefix)
2646 (string-append prefix
2647 "linkflags=[\"-Wl,-rpath="
2648 out "/lib" "\"]," line)))
2649 (substitute* "src/gui/wscript"
2650 ;; Add libraries to RUNPATH.
2651 (("^(.+)target.* = 'ingen_gui.*" line prefix)
2652 (string-append prefix
2653 "linkflags=[\"-Wl,-rpath="
2654 out "/lib" "\"]," line))))
2655 #t)))))
2656 (inputs
2657 `(("boost" ,boost)
2658 ("python-rdflib" ,python-rdflib)
2659 ("python" ,python)
2660 ("jack" ,jack-1)
2661 ("lv2" ,lv2)
2662 ("lilv" ,lilv)
2663 ("raul" ,raul-devel)
2664 ("ganv" ,ganv-devel)
2665 ("suil" ,suil)
2666 ("serd" ,serd)
2667 ("sord" ,sord)
2668 ("sratom" ,sratom)
2669 ("gtkmm" ,gtkmm-2)))
2670 (native-inputs
2671 `(("pkg-config" ,pkg-config)
2672 ("python-pygments" ,python-pygments)))
2673 (home-page "http://drobilla.net/software/ingen")
2674 (synopsis "Modular audio processing system")
2675 (description "Ingen is a modular audio processing system for JACK and
2676LV2 based systems. Ingen is built around LV2 technology and a strict
2677separation of engine from user interface. The engine is controlled
2678exclusively through a protocol, and can execute as a headless process, with an
2679in-process GUI, or as an LV2 plugin. The GUI can run as a program which
2680communicates over a Unix or TCP/IP socket, or as an embeddable LV2 GUI which
2681communicates via LV2 ports. Any saved Ingen graph can be loaded as an LV2
2682plugin on any system where Ingen is installed. This allows users to visually
2683develop custom plugins for use in other applications without programming.")
2684 (license license:agpl3+))))
2685
b3410b44
RW
2686(define-public qmidiarp
2687 (package
2688 (name "qmidiarp")
2689 (version "0.6.4")
2690 (source (origin
2691 (method url-fetch)
2692 (uri (string-append "mirror://sourceforge/qmidiarp/qmidiarp/"
2693 version "/qmidiarp-" version ".tar.bz2"))
2694 (sha256
2695 (base32
2696 "1gkfv8ajgf86kbn6j5ilfc1zlz17gdi9yxzywqd6jwff4xlm75hx"))))
2697 (build-system gnu-build-system)
2698 (arguments
2699 `(#:configure-flags
2700 (list "--enable-qt5"
2701 "CXXFLAGS=-std=gnu++11")))
2702 (inputs
2703 `(("qtbase" ,qtbase)
2704 ("alsa-lib" ,alsa-lib)
2705 ("jack" ,jack-1)
2706 ("liblo" ,liblo)
2707 ("lv2" ,lv2)))
2708 (native-inputs
2709 `(("pkg-config" ,pkg-config)
2710 ("qttools" ,qttools)))
2711 (home-page "http://qmidiarp.sourceforge.net/")
2712 (synopsis "MIDI arpeggiator")
2713 (description "QMidiArp is an advanced MIDI arpeggiator, programmable step
2714sequencer and LFO. It can hold any number of arpeggiator, sequencer, or LFO
2715modules running in parallel.")
2716 (license license:gpl2+)))
2717
5a66e25c
RW
2718(define-public seq24
2719 (package
2720 (name "seq24")
2721 (version "0.9.3")
2722 (source (origin
2723 (method url-fetch)
2724 (uri (string-append "https://launchpad.net/seq24/trunk/"
2725 version "/+download/seq24-"
2726 version ".tar.bz2"))
2727 (sha256
2728 (base32
2729 "12dphdhnvfk1k0vmagi1v2lhyxjyj1j3cz6ksjw0ydcvid1x8ap2"))
2730 (patches (search-patches "seq24-rename-mutex.patch"))))
2731 (build-system gnu-build-system)
2732 (arguments
2733 `(#:configure-flags
2734 (list "CXXFLAGS=-std=gnu++11")))
2735 (inputs
2736 `(("gtkmm" ,gtkmm-2)
2737 ("alsa-lib" ,alsa-lib)
2738 ("jack" ,jack-1)
2739 ("lash" ,lash)))
2740 (native-inputs
2741 `(("pkg-config" ,pkg-config)))
2742 (home-page "https://edge.launchpad.net/seq24/")
2743 (synopsis "Real-time MIDI sequencer")
2744 (description "Seq24 is a real-time MIDI sequencer. It was created to
2745provide a very simple interface for editing and playing MIDI loops.")
2746 (license license:gpl2+)))
2747
d3db5efb
LF
2748(define-public python-discogs-client
2749 (package
2750 (name "python-discogs-client")
2751 (version "2.2.1")
2752 (source (origin
2753 (method url-fetch)
2754 (uri (pypi-uri "discogs-client" version))
2755 (sha256
2756 (base32
2757 "053ld2psh0yj3z0kg6z5bn4y3cr562m727494n0ayhgzbkjbacly"))))
2758 (build-system python-build-system)
2759 (propagated-inputs
2760 `(("python-oauthlib" ,python-oauthlib)
2761 ("python-requests" ,python-requests)))
2762 (native-inputs
2763 `(("python-six" ,python-six)))
2764 (home-page "https://github.com/discogs/discogs_client")
2765 (synopsis "Official Python client for the Discogs API")
2766 (description "This is the official Discogs API client for Python. It enables
2767you to query the Discogs database for information on artists, releases, labels,
2768users, Marketplace listings, and more. It also supports OAuth 1.0a
2769authorization, which allows you to change user data such as profile information,
2770collections and wantlists, inventory, and orders.")
80983df3 2771 (license license:bsd-2)))
d3db5efb
LF
2772
2773(define-public python2-discogs-client
80983df3 2774 (package-with-python2 python-discogs-client))
a4f05b46 2775
2776(define-public libsmf
2777 (package
2778 (name "libsmf")
2779 (version "1.3")
2780 (source
2781 (origin
2782 (method url-fetch)
2783 ;; SF download page says development moved, but the link it points to
2784 ;; is gone (https://github.com/nilsgey/libsmf). Someone else adopted
2785 ;; it but made no release so far (https://github.com/stump/libsmf).
2786 (uri (string-append "mirror://sourceforge/libsmf/libsmf/"
2787 version "/libsmf-" version ".tar.gz"))
2788 (sha256
2789 (base32
2790 "16c0n40h0r56gzbh5ypxa4dwp296dan3jminml2qkb4lvqarym6k"))))
2791 (build-system gnu-build-system)
2792 (outputs '("out"
2793 "static")) ; 88KiB of .a files
2794 (arguments
2795 `(#:phases
2796 (modify-phases %standard-phases
2797 (add-after 'install 'move-static-libraries
2798 (lambda* (#:key outputs #:allow-other-keys)
2799 ;; Move static libraries to the "static" output.
2800 (let* ((out (assoc-ref outputs "out"))
2801 (lib (string-append out "/lib"))
2802 (static (assoc-ref outputs "static"))
2803 (slib (string-append static "/lib")))
2804 (mkdir-p slib)
2805 (for-each (lambda (file)
2806 (install-file file slib)
2807 (delete-file file))
2808 (find-files lib "\\.a$"))
2809 #t))))))
2810 (inputs
2811 `(("readline" ,readline)
2812 ("glib" ,glib)))
2813 (native-inputs
2814 `(("doxygen" ,doxygen)
2815 ("pkg-config" ,pkg-config)))
2816 (home-page "http://libsmf.sourceforge.net/")
2817 (synopsis "Standard MIDI File format library")
2818 (description
2819 "LibSMF is a C library for handling SMF (\"*.mid\") files. It transparently handles
2820conversions between time and pulses, tempo map handling and more. The only dependencies
2821are a C compiler and glib. Full API documentation and examples are included.")
2822 (license license:bsd-2)))
a42619e5
RF
2823
2824(define-public lmms
2825 (package
2826 (name "lmms")
2827 (version "1.1.3")
2828 (source
2829 (origin
2830 (method url-fetch)
2831 (uri (string-append "https://github.com/LMMS/lmms/archive/v"
2832 version ".tar.gz"))
2833 (file-name (string-append name "-" version ".tar.gz"))
2834 (sha256
2835 (base32
2836 "1g76z7ha3hd53vbqaq9n1qg6s3lw8zzaw51iny6y2bz0j1xqwcsr"))))
2837 (build-system cmake-build-system)
2838 (arguments
2839 `(#:tests? #f ; no tests
2840 #:phases
2841 (modify-phases %standard-phases
2842 (add-before
2843 'configure 'set-ldflags
2844 (lambda* (#:key outputs #:allow-other-keys)
2845 (setenv "LDFLAGS"
2846 (string-append
2847 "-Wl,-rpath=\""
2848 (assoc-ref outputs "out") "/lib/lmms"
2849 ":"
2850 (assoc-ref outputs "out") "/lib/lmms/ladspa"
2851 "\"")))))))
2852 (native-inputs
2853 `(("pkg-config" ,pkg-config)))
2854 (inputs
2855 `(("sdl" ,sdl)
2856 ("qt" ,qt-4)
2857 ("fltk" ,fltk)
2858 ("libogg" ,libogg)
2859 ("libsamplerate" ,libsamplerate)
2860 ("fluidsynth" ,fluidsynth)
2861 ("libvorbis" ,libvorbis)
2862 ("alsa-lib" ,alsa-lib)
2863 ("portaudio" ,portaudio)
2864 ("ladspa" ,ladspa)
2865 ("libsndfile1" ,libsndfile)
2866 ("libxft" ,libxft)
2867 ("freetype2" ,freetype)
2868 ("fftw3f" ,fftwf)))
2869 (home-page "https://lmms.io/")
2870 (synopsis "Music composition tool")
2871 (description "LMMS is a digital audio workstation. It includes tools for sequencing
2872melodies and beats and for mixing and arranging songs. LMMS includes instruments based on
2873audio samples and various soft sythesizers. It can receive input from a MIDI keyboard.")
2874 (license license:gpl2+)))