gnu: pd: Run autogen.sh script.
[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>
e3b2e943 8;;; Copyright © 2016, 2017 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")
0a151351 112 (version "1.4.13")
c30a66de
RW
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
0a151351 119 "1cs3z6frx2ch7rm5ammx9p0rxcjrbj1vq14hvcbimpaw39rdsn3d"))))
c30a66de
RW
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"))
95708ed8 482 (home-page "http://digego.github.io/extempore/")
91595624
RW
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")
57f1b3b8 588 (version "2.19.58")
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
57f1b3b8 597 "0wjapb3if6qqdmr57z20hidx7czhl023cjimr01i8yf7k41fakh7"))))
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 672 ;; system, so we take the last commit.
5feac7b0
RW
673 (let ((commit "10c31e57291b6e42be53371567a722b62b32d220")
674 (revision "3"))
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
5feac7b0 685 "080rha4ffp7qycyg1mqcf4vj0s7z8qfvz6bxm0w29xgg2kkmb3fx"))
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")
720de58b 984 (version "0.8.1")
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
720de58b 992 "0rzkr8mgy28j5kg56qqrdm05ml2wlm651yk27c2mn5ql7v92gdx3"))))
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")
17ca1a39 1015 (version "0.8.1")
cf9af706
RW
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
17ca1a39 1023 "0l6kjb1q9vslwy56836a0c65mf8z8ycam5vzz3k4qvd8g74bs1zq"))))
cf9af706
RW
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")
14fa5bde 1049 (version "0.8.1")
18675264
RW
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
14fa5bde 1057 "15rp9d1jbb56idyrnn9cqi1i7a70z1a1qdyz7ryn0bla0ghjnich"))))
18675264
RW
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")
7e0befd4 1083 (version "1.7.1")
2bb00612
RW
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
7e0befd4 1092 "1882pfcmf3rqg3vd4qflzkppcv158d748i603spqjbxqi8z7x7w0"))))
2bb00612
RW
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)
7175f4c2 1106 ("lash" ,lash)
2bb00612
RW
1107 ("libsndfile" ,libsndfile)
1108 ("gtk+" ,gtk+-2)
1109 ("gtkmm" ,gtkmm-2)))
1110 (native-inputs
7e0befd4
RW
1111 `(("pkg-config" ,pkg-config)
1112 ("intltool" ,intltool)))
2bb00612
RW
1113 (home-page "http://amsynth.github.io")
1114 (synopsis "Analog modeling synthesizer")
1115 (description
1116 "amsynth is an easy-to-use software synthesizer with a classic
1117subtractive synthesizer topology. Its features include: dual
1118oscillators (sine, saw, square, noise) with hard sync; 12 and 24 dB/oct
1119resonant filters (low-pass, high-pass, band-pass, notch); mono, poly, legato
1120keyboard modes; dual ADSR envelope generators for filter and amplitude; LFO
1121which can modulate the oscillators, filter, and amplitude; distortion and
1122reverb effects.")
1123 (license license:gpl2+)))
b095e762 1124
ec8da0e2
RW
1125(define-public setbfree
1126 (package
1127 (name "setbfree")
8dbc5d23 1128 (version "0.8.4")
ec8da0e2
RW
1129 (source (origin
1130 (method url-fetch)
1131 (uri
a39f48b8
RW
1132 (string-append "https://github.com/pantherb/setBfree/archive/v"
1133 version ".tar.gz"))
1134 (file-name (string-append name "-" version ".tar.gz"))
ec8da0e2
RW
1135 (sha256
1136 (base32
8dbc5d23 1137 "1g4s1920kb2q5gpp82l2vxia29qa8g8zvdjgrca8ypynvxpzn65f"))))
ec8da0e2
RW
1138 (build-system gnu-build-system)
1139 (arguments
1140 `(#:tests? #f ; no "check" target
1141 #:make-flags
1142 (list (string-append "PREFIX=" (assoc-ref %outputs "out"))
1143 (string-append "FONTFILE="
1144 (assoc-ref %build-inputs "font-bitstream-vera")
b42d4508
RW
1145 "/share/fonts/truetype/VeraBd.ttf")
1146 ;; Disable unsupported optimization flags on non-x86
1147 ,@(let ((system (or (%current-target-system)
1148 (%current-system))))
1149 (if (or (string-prefix? "x86_64" system)
1150 (string-prefix? "i686" system))
1151 '()
1152 '("OPTIMIZATIONS=-ffast-math -fomit-frame-pointer -O3"))))
ec8da0e2
RW
1153 #:phases
1154 (modify-phases %standard-phases
1155 (add-before 'build 'set-CC-variable
1156 (lambda _ (setenv "CC" "gcc") #t))
1157 (delete 'configure))))
1158 (inputs
1159 `(("jack" ,jack-1)
1160 ("lv2" ,lv2)
1161 ("zita-convolver" ,zita-convolver)
1162 ("glu" ,glu)
1163 ("ftgl" ,ftgl)
1164 ("font-bitstream-vera" ,font-bitstream-vera)))
1165 (native-inputs
1166 `(("help2man" ,help2man)
1167 ("pkg-config" ,pkg-config)))
1168 (home-page "http://setbfree.org")
1169 (synopsis "Tonewheel organ")
1170 (description
1171 "setBfree is a MIDI-controlled, software synthesizer designed to imitate
1172the sound and properties of the electromechanical organs and sound
1173modification devices that brought world-wide fame to the names and products of
1174Laurens Hammond and Don Leslie.")
1175 (license license:gpl2+)))
1176
770305f4
RW
1177(define-public beast
1178 (package
1179 (name "beast")
1180 (version "0.10.0")
1181 (source (origin
1182 (method url-fetch)
1183 (uri (string-append "https://testbit.eu/pub/dists/beast/beast-"
1184 version ".tar.xz"))
1185 (sha256
1186 (base32
1187 "1jzzmfwssklzw8fvvil04n8csc0zm99fnd9p2xa7c0xchg37lvhn"))))
1188 (build-system gnu-build-system)
844f4f6e
EF
1189 (arguments
1190 '(#:parallel-build? #f)) ; Race conditions cause build failures
770305f4
RW
1191 (inputs
1192 `(("rapicorn" ,rapicorn)
1193 ("guile" ,guile-1.8)
1194 ("python" ,python-2)
770305f4
RW
1195 ("libgnomecanvas" ,libgnomecanvas)
1196 ("libogg" ,libogg)
1197 ("libmad" ,libmad)
1198 ("flac" ,flac)
1199 ("alsa-lib" ,alsa-lib)
1200 ("libvorbis" ,libvorbis)
b94a6ca0 1201 ("gettext" ,gettext-minimal)))
770305f4
RW
1202 (native-inputs
1203 `(("pkg-config" ,pkg-config)
1204 ("glib:bin" ,glib "bin")
f2516de2 1205 ("cython" ,python2-cython)
770305f4
RW
1206 ("perl" ,perl)
1207 ("perl-xml-parser" ,perl-xml-parser)))
1208 (home-page "https://testbit.eu/wiki/Beast_Home")
1209 (synopsis "Music composition and modular synthesis environment")
1210 (description
1211 "Beast is a music composition and modular synthesis application. It
1212supports a wide range of standards in the field, such as MIDI, various audio
1213file formats and LADSPA modules. It allows for multitrack editing, real-time
1214synthesis, 32bit audio rendering, precise timing down to sample granularity,
1215on-demand and partial loading of wave files, on the fly decoding, stereo
1216mixing, FFT scopes, MIDI automation and full scriptability in Scheme.")
1217 (license license:gpl3+)))
1218
96250294
RW
1219(define-public bristol
1220 (package
1221 (name "bristol")
1222 (version "0.60.11")
1223 (source (origin
1224 (method url-fetch)
1225 (uri (string-append "mirror://sourceforge/bristol/bristol/"
1226 (version-major+minor version)
1227 "/bristol-" version ".tar.gz"))
1228 (sha256
1229 (base32
1230 "1fi2m4gmvxdi260821y09lxsimq82yv4k5bbgk3kyc3x1nyhn7vx"))))
1231 (build-system gnu-build-system)
18ef998b
RW
1232 (arguments
1233 `(#:phases
1234 (modify-phases %standard-phases
1235 (add-after 'unpack 'remove-sse-flags
1236 (lambda* (#:key system #:allow-other-keys)
1237 (when (not (or (string-prefix? "x86_64" system)
1238 (string-prefix? "i686" system)))
1239 (substitute* "bristol/Makefile.in"
1240 (("-msse -mfpmath=sse") "")))
73124d34
RW
1241 #t))
1242 ;; We know that Bristol has been linked with JACK and we don't have
1243 ;; ldd, so we can just skip this check.
1244 (add-after 'unpack 'do-not-grep-for-jack
1245 (lambda _
1246 (substitute* "bin/startBristol.in"
1247 (("ldd `which bristol` | grep jack") "echo guix"))
18ef998b 1248 #t)))))
96250294
RW
1249 (inputs
1250 `(("alsa-lib" ,alsa-lib)
1251 ("jack" ,jack-1)
1252 ("liblo" ,liblo)
1253 ("libx11" ,libx11)))
1254 (native-inputs
1255 `(("pkg-config" ,pkg-config)))
1256 (home-page "http://bristol.sourceforge.net/")
1257 (synopsis "Synthesizer emulator")
1258 (description
1259 "Bristol is an emulation package for a number of different 'classic'
1260synthesizers including additive and subtractive and a few organs. The
1261application consists of the engine, which is called bristol, and its own GUI
1262library called brighton that represents all the emulations. There are
1263currently more than twenty different emulations; each does sound different
1264although the author maintains that the quality and accuracy of each emulation
1265is subjective.")
1266 (license license:gpl3+)))
1267
6260d1a8
RW
1268(define-public tuxguitar
1269 (package
1270 (name "tuxguitar")
f467c352 1271 (version "1.3.2")
6260d1a8
RW
1272 (source (origin
1273 (method url-fetch)
1274 (uri (string-append
1275 "mirror://sourceforge/tuxguitar/TuxGuitar/TuxGuitar-"
f467c352 1276 version "/tuxguitar-" version "-src.tar.gz"))
6260d1a8
RW
1277 (sha256
1278 (base32
f467c352
RW
1279 "0ldml31zvywid1w28mfd65ramyiics55fdl0ch846vm7j7nwv58j"))
1280 (modules '((guix build utils)))
1281 (snippet
1282 ;; Delete pre-built classes
1283 '(delete-file-recursively "TuxGuitar-android/bin"))))
1284 (build-system ant-build-system)
6260d1a8 1285 (arguments
f467c352
RW
1286 `(#:build-target "build"
1287 #:tests? #f ; no tests
6260d1a8 1288 #:phases
5f1c9498 1289 (modify-phases %standard-phases
f467c352
RW
1290 (add-after 'unpack 'enter-dir
1291 (lambda _ (chdir "TuxGuitar-lib") #t))
1292 (add-after 'build 'build-editor-utils
1293 (lambda* (#:key inputs outputs #:allow-other-keys)
1294 (chdir "..")
1295 (let ((cwd (getcwd)))
1296 (setenv "CLASSPATH"
1297 (string-append
1298 cwd "/TuxGuitar-lib/tuxguitar-lib.jar" ":"
1299 cwd "/TuxGuitar-editor-utils/build/jar/tuxguitar-editor-utils.jar" ":"
1300 (getenv "CLASSPATH"))))
1301 (chdir "TuxGuitar-editor-utils")
1302 ;; Generate default build.xml
1303 ((@@ (guix build ant-build-system) default-build.xml)
1304 "tuxguitar-editor-utils.jar"
1305 (string-append (assoc-ref outputs "out")
1306 "/share/java"))
1307 ((assoc-ref %standard-phases 'build))))
1308 (add-after 'build-editor-utils 'build-application
1309 (lambda _
1310 (chdir "../TuxGuitar")
1311 ((assoc-ref %standard-phases 'build)
1312 #:build-target "build")))
1313 (replace 'install
1314 (lambda* (#:key inputs outputs #:allow-other-keys)
1315 (let* ((out (assoc-ref outputs "out"))
1316 (bin (string-append out "/bin"))
1317 (share (string-append out "/share"))
1318 (lib (string-append share "/java"))
1319 (swt (assoc-ref inputs "java-swt")))
1320 (mkdir-p bin)
f467c352
RW
1321 ;; install all jars
1322 (for-each (lambda (file)
1323 (install-file file lib))
1324 (find-files ".." "\\.jar$"))
1325 ;; install all resources
1326 (for-each (lambda (file)
1327 (install-file file share))
1328 (find-files "share" ".*"))
1329 ;; create wrapper
1330 (call-with-output-file (string-append bin "/tuxguitar")
1331 (lambda (port)
1332 (let ((classpath (string-join (append (find-files lib "\\.jar$")
1333 (find-files swt "\\.jar$"))
1334 ":")))
1335 (format
1336 port
1337 (string-append "#!/bin/sh\n"
1338 (which "java")
1339 " -cp " classpath
1340 " -Dtuxguitar.home.path=" out
1341 " -Dtuxguitar.share.path=" out "/share"
1342 " -Dswt.library.path=" swt "/lib"
1343 " org.herac.tuxguitar.app.TGMainSingleton"
1344 " \"$1\" \"$2\"")))))
1345 (chmod (string-append bin "/tuxguitar") #o555)
1346 #t))))))
6260d1a8 1347 (inputs
1ad15c16 1348 `(("java-swt" ,java-swt)))
f9b8b54e 1349 (home-page "http://tuxguitar.pw")
6260d1a8
RW
1350 (synopsis "Multitrack tablature editor and player")
1351 (description
1352 "TuxGuitar is a guitar tablature editor with player support through midi.
1353It can display scores and multitrack tabs. TuxGuitar provides various
1354additional features, including autoscrolling while playing, note duration
1355management, bend/slide/vibrato/hammer-on/pull-off effects, support for
1356tuplets, time signature management, tempo management, gp3/gp4/gp5 import and
1357export.")
1358 (license license:lgpl2.1+)))
2d0fd07b
RW
1359
1360(define-public pd
1361 (package
1362 (name "pd")
037bf4f4 1363 (version "0.47-1")
2d0fd07b
RW
1364 (source (origin
1365 (method url-fetch)
1366 (uri
037bf4f4
RW
1367 (string-append "http://msp.ucsd.edu/Software/pd-"
1368 version ".src.tar.gz"))
2d0fd07b
RW
1369 (sha256
1370 (base32
037bf4f4 1371 "0k5s949kqd7yw97h3m8z81bjz32bis9m4ih8df1z0ymipnafca67"))))
2d0fd07b
RW
1372 (build-system gnu-build-system)
1373 (arguments
1374 `(#:tests? #f ; no "check" target
1375 #:phases
1376 (modify-phases %standard-phases
4712cbb0
RW
1377 (add-before 'configure 'fix-wish-path
1378 (lambda _
1379 (substitute* "src/s_inter.c"
1380 ((" wish ") (string-append " " (which "wish8.6") " ")))
1381 (substitute* "tcl/pd-gui.tcl"
1382 (("exec wish ") (string-append "exec " (which "wish8.6") " ")))
1383 #t))
1384 (add-after 'unpack 'autoconf
8723fe23 1385 (lambda _ (zero? (system* "bash" "./autogen.sh")))))))
2d0fd07b
RW
1386 (native-inputs
1387 `(("autoconf" ,autoconf)
1388 ("automake" ,automake)
1389 ("libtool" ,libtool)
b94a6ca0 1390 ("gettext" ,gettext-minimal)
2d0fd07b
RW
1391 ("pkg-config" ,pkg-config)))
1392 (inputs
1393 `(("tk" ,tk)
1394 ("alsa-lib" ,alsa-lib)
1395 ("jack" ,jack-1)))
1396 (home-page "http://puredata.info")
1397 (synopsis "Visual programming language for artistic performances")
1398 (description
1399 "Pure Data (aka Pd) is a visual programming language. Pd enables
1400musicians, visual artists, performers, researchers, and developers to create
1401software graphically, without writing lines of code. Pd is used to process
1402and generate sound, video, 2D/3D graphics, and interface sensors, input
1403devices, and MIDI. Pd can easily work over local and remote networks to
1404integrate wearable technology, motor systems, lighting rigs, and other
1405equipment. Pd is suitable for learning basic multimedia processing and visual
1406programming methods as well as for realizing complex systems for large-scale
1407projects.")
1408 (license license:bsd-3)))
821664f1 1409
aacb52fb
RW
1410(define-public portmidi
1411 (package
1412 (name "portmidi")
1413 (version "217")
1414 (source (origin
1415 (method url-fetch)
1416 (uri (string-append "mirror://sourceforge/portmedia/portmidi/"
1417 version "/portmidi-src-" version ".zip"))
1418 (sha256
1419 (base32
1420 "03rfsk7z6rdahq2ihy5k13qjzgx757f75yqka88v3gc0pn9ais88"))
1421 (patches (list (search-patch "portmidi-modular-build.patch")))))
1422 (build-system cmake-build-system)
1423 (arguments
1424 `(#:tests? #f ; tests cannot be linked
1425 #:configure-flags
1426 (list "-DPORTMIDI_ENABLE_JAVA=Off"
1427 "-DCMAKE_BUILD_TYPE=Release" ; needed to have PMALSA set
1428 "-DPORTMIDI_ENABLE_TEST=Off"))) ; tests fail linking
1429 (inputs
1430 `(("alsa-lib" ,alsa-lib)))
1431 (native-inputs
1432 `(("unzip" ,unzip)))
1433 (home-page "http://portmedia.sourceforge.net/portmidi/")
1434 (synopsis "Library for MIDI I/O")
1435 (description
1436 "PortMidi is a library supporting real-time input and output of MIDI data
1437using a system-independent interface.")
1438 (license license:expat)))
f65d59fc 1439
38098bf7
RW
1440(define-public portmidi-for-extempore
1441 (package (inherit portmidi)
1442 (name "portmidi-for-extempore")
1443 (version "217")
1444 (source (origin
1445 (method url-fetch)
1446 (uri (string-append "https://github.com/extemporelang/portmidi/"
1447 "archive/" version ".tar.gz"))
1448 (file-name (string-append name "-" version ".tar.gz"))
1449 (sha256
1450 (base32
1451 "0gjikwciyr8kk4y3qiv1pcq58xpgw38ql1m2gs6g0qc1s8sx4235"))))
1452 (build-system cmake-build-system)
1453 (arguments `(#:tests? #f)) ; no tests
1454 (native-inputs '())
39162ee4
RW
1455 ;; Extempore refuses to build on architectures other than x86_64
1456 (supported-systems '("x86_64-linux"))
38098bf7
RW
1457 (home-page "https://github.com/extemporelang/portmidi/")))
1458
f65d59fc
RW
1459(define-public python-pyportmidi
1460 (package
1461 (name "python-pyportmidi")
1462 (version (package-version portmidi))
1463 (source (package-source portmidi))
1464 (build-system python-build-system)
1465 (arguments
1466 `(#:tests? #f ; no tests included
1467 #:phases
1468 (modify-phases %standard-phases
1469 (add-after 'unpack 'enter-dir
1470 (lambda _ (chdir "pm_python") #t))
1471 (add-after 'enter-dir 'fix-setup.py
1472 (lambda _
1473 (substitute* "setup.py"
1474 ;; Use Python 3 syntax
1475 (("print (\".*\")" _ text)
1476 (string-append "print(" text ")\n"))
1477 ;; TODO.txt and CHANGES.txt don't exist
1478 (("CHANGES =.*") "CHANGES = \"\"\n")
1479 (("TODO =.*") "TODO = \"\"\n"))
1480 #t)))))
1481 (inputs
1482 `(("portmidi" ,portmidi)
f2516de2 1483 ("alsa-lib" ,alsa-lib)))
f65d59fc 1484 (native-inputs
f2516de2
HG
1485 `(("python-cython" ,python-cython)
1486 ("unzip" ,unzip)))
f65d59fc
RW
1487 (home-page "http://portmedia.sourceforge.net/portmidi/")
1488 (synopsis "Python bindings to PortMidi")
1489 (description
1490 "This package provides Python bindings to the PortMidi library.")
1491 (license license:expat)))
aacb52fb 1492
821664f1
RW
1493(define-public frescobaldi
1494 (package
1495 (name "frescobaldi")
4b2eede4 1496 (version "2.19.0")
821664f1
RW
1497 (source (origin
1498 (method url-fetch)
1499 (uri (string-append
1500 "https://github.com/wbsoft/frescobaldi/releases/download/v"
1501 version "/frescobaldi-" version ".tar.gz"))
1502 (sha256
1503 (base32
4b2eede4 1504 "1rnk8i8dlshzx16n2qxcsqcs7kywgyazzyzw2vy4vp2gsm9vs9ml"))))
821664f1 1505 (build-system python-build-system)
a19a6d3a 1506 (arguments `(#:tests? #f)) ; no tests included
821664f1
RW
1507 (inputs
1508 `(("lilypond" ,lilypond)
6855b347 1509 ("portmidi" ,portmidi)
821664f1
RW
1510 ("python-pyqt-4" ,python-pyqt-4)
1511 ("python-ly" ,python-ly)
6855b347 1512 ("python-pyportmidi" ,python-pyportmidi)
821664f1
RW
1513 ("poppler" ,poppler)
1514 ("python-poppler-qt4" ,python-poppler-qt4)
1515 ("python-sip" ,python-sip)))
1516 (home-page "http://www.frescobaldi.org/")
1517 (synopsis "LilyPond sheet music text editor")
1518 (description
1519 "Frescobaldi is a LilyPond sheet music text editor with syntax
1520highlighting and automatic completion. Among other things, it can render
1521scores next to the source, can capture input from MIDI or read MusicXML and
1522ABC files, has a MIDI player for proof-listening, and includes a documentation
1523browser.")
1524 (license license:gpl2+)))
ddfddb0c 1525
bf76d780
RW
1526(define-public drumstick
1527 (package
1528 (name "drumstick")
382aacc5 1529 (version "1.1.0")
bf76d780
RW
1530 (source (origin
1531 (method url-fetch)
1532 (uri (string-append "mirror://sourceforge/drumstick/"
1533 version "/drumstick-" version ".tar.bz2"))
1534 (sha256
1535 (base32
382aacc5 1536 "13pkfqrav30bbcddgf1imd7jk6lpqbxkz1qv31718pdl446jq7df"))))
bf76d780
RW
1537 (build-system cmake-build-system)
1538 (arguments
1539 `(#:tests? #f ; no test target
1540 #:configure-flags '("-DLIB_SUFFIX=")
1541 #:phases
1542 (modify-phases %standard-phases
1543 (add-before 'configure 'fix-docbook
1544 (lambda* (#:key inputs #:allow-other-keys)
1545 (substitute* "cmake_admin/CreateManpages.cmake"
1546 (("http://docbook.sourceforge.net/release/xsl/current/manpages/docbook.xsl")
1547 (string-append (assoc-ref inputs "docbook-xsl")
1548 "/xml/xsl/docbook-xsl-"
1549 ,(package-version docbook-xsl)
1550 "/manpages/docbook.xsl")))
1551 #t)))))
1552 (inputs
ca1cab82
EF
1553 `(("qtbase" ,qtbase)
1554 ("qtsvg" ,qtsvg)
bf76d780
RW
1555 ("alsa-lib" ,alsa-lib)
1556 ("fluidsynth" ,fluidsynth)))
1557 (native-inputs
1558 `(("pkg-config" ,pkg-config)
1559 ("libxslt" ,libxslt) ;for xsltproc
1560 ("docbook-xsl" ,docbook-xsl)
1561 ("doxygen" ,doxygen)))
1562 (home-page "http://drumstick.sourceforge.net/")
1563 (synopsis "C++ MIDI library")
1564 (description
1565 "Drumstick is a set of MIDI libraries using C++/Qt5 idioms and style. It
1566includes a C++ wrapper around the ALSA library sequencer interface. A
1567complementary library provides classes for processing SMF (Standard MIDI
1568files: .MID/.KAR), Cakewalk (.WRK), and Overture (.OVE) file formats. A
1569multiplatform realtime MIDI I/O library is also provided with various output
1570backends, including ALSA, OSS, Network and FluidSynth.")
1571 (license license:gpl2+)))
1572
ddfddb0c
RW
1573(define-public zynaddsubfx
1574 (package
1575 (name "zynaddsubfx")
4908ae48 1576 (version "3.0.1")
ddfddb0c
RW
1577 (source (origin
1578 (method url-fetch)
1579 (uri (string-append
1580 "mirror://sourceforge/zynaddsubfx/zynaddsubfx/"
138e7697 1581 version "/zynaddsubfx-" version ".tar.bz2"))
ddfddb0c
RW
1582 (sha256
1583 (base32
4908ae48 1584 "1qijvlbv41lnqaqbp6gh1i42xzf1syviyxz8wr39xbz55cw7y0d8"))))
ddfddb0c 1585 (build-system cmake-build-system)
00dfc97c
RW
1586 (arguments
1587 `(#:phases
1588 (modify-phases %standard-phases
1589 ;; Move SSE compiler optimization flags from generic target to
1590 ;; athlon64 and core2 targets, because otherwise the build would fail
1591 ;; on non-Intel machines.
1592 (add-after 'unpack 'remove-sse-flags-from-generic-target
1593 (lambda _
1594 (substitute* "src/CMakeLists.txt"
1595 (("-msse -msse2 -mfpmath=sse") "")
1596 (("-march=(athlon64|core2)" flag)
1597 (string-append flag " -msse -msse2 -mfpmath=sse")))
1598 #t)))))
ddfddb0c
RW
1599 (inputs
1600 `(("liblo" ,liblo)
1601 ("ntk" ,ntk)
1ea7969f 1602 ("mesa" ,mesa)
ddfddb0c
RW
1603 ("alsa-lib" ,alsa-lib)
1604 ("jack" ,jack-1)
1605 ("fftw" ,fftw)
1606 ("minixml" ,minixml)
1607 ("libxpm" ,libxpm)
1608 ("zlib" ,zlib)))
1609 (native-inputs
1610 `(("pkg-config" ,pkg-config)))
1611 (home-page "http://zynaddsubfx.sf.net/")
1612 (synopsis "Software synthesizer")
1613 (description
1614 "ZynAddSubFX is a feature heavy realtime software synthesizer. It offers
1615three synthesizer engines, multitimbral and polyphonic synths, microtonal
1616capabilities, custom envelopes, effects, etc.")
1617 (license license:gpl2)))
c493679f
RW
1618
1619(define-public yoshimi
1620 (package
1621 (name "yoshimi")
7070088a 1622 (version "1.5.1")
c493679f
RW
1623 (source (origin
1624 (method url-fetch)
1625 (uri (string-append "mirror://sourceforge/yoshimi/"
1626 (version-major+minor version)
1627 "/yoshimi-" version ".tar.bz2"))
1628 (sha256
1629 (base32
7070088a 1630 "09kmq5bwgwwpa5z2mm1pxhnqcryd0cm5ixlafb3g6d3aspja2mkn"))))
c493679f
RW
1631 (build-system cmake-build-system)
1632 (arguments
1633 `(#:tests? #f ; there are no tests
1634 #:configure-flags
1635 (list (string-append "-DCMAKE_INSTALL_DATAROOTDIR="
1636 (assoc-ref %outputs "out") "/share"))
1637 #:phases
1638 (modify-phases %standard-phases
1639 (add-before 'configure 'enter-dir
1640 (lambda _ (chdir "src") #t))
1641 ;; Move SSE compiler optimization flags from generic target to
1642 ;; athlon64 and core2 targets, because otherwise the build would fail
1643 ;; on non-Intel machines.
1644 (add-after 'unpack 'remove-sse-flags-from-generic-target
1645 (lambda _
1646 (substitute* "src/CMakeLists.txt"
1647 (("-msse -msse2 -mfpmath=sse") "")
1648 (("-march=(athlon64|core2)" flag)
1649 (string-append flag " -msse -msse2 -mfpmath=sse")))
7fd30d1b
RW
1650 #t))
1651 ;; Yoshimi tries to find ncurses with pkg-config, but our ncurses
1652 ;; package does not install .pc files.
1653 (add-after 'unpack 'find-ncurses
1654 (lambda _
1655 (substitute* "src/CMakeLists.txt"
1656 (("LIBNCURSES REQUIRED") "LIBNCURSES")
1657 (("NCURSES REQUIRED") "NCURSES")
1658 (("FATAL_ERROR \"libncurses") "STATUS \"libncurses")
1659 (("\\$\\{NCURSES_LIBRARIES\\}") "ncurses"))
1660 #t)))))
c493679f
RW
1661 (inputs
1662 `(("boost" ,boost)
1663 ("fftwf" ,fftwf)
1664 ("alsa-lib" ,alsa-lib)
1665 ("jack" ,jack-1)
1666 ("fontconfig" ,fontconfig)
1667 ("minixml" ,minixml)
1668 ("mesa" ,mesa)
1669 ("fltk" ,fltk)
1670 ("lv2" ,lv2)
1671 ("readline" ,readline)
1672 ("ncurses" ,ncurses)
1673 ("cairo" ,cairo)
1674 ("zlib" ,zlib)))
1675 (native-inputs
1676 `(("pkg-config" ,pkg-config)))
1677 (home-page "http://yoshimi.sourceforge.net/")
1678 (synopsis "Multi-paradigm software synthesizer")
1679 (description
1680 "Yoshimi is a fork of ZynAddSubFX, a feature heavy realtime software
1681synthesizer. It offers three synthesizer engines, multitimbral and polyphonic
1682synths, microtonal capabilities, custom envelopes, effects, etc. Yoshimi
1683improves on support for JACK features, such as JACK MIDI.")
1684 (license license:gpl2)))
658212eb 1685
e87cb754
RW
1686(define-public libgig
1687 (package
1688 (name "libgig")
1689 (version "4.0.0")
1690 (source (origin
1691 (method url-fetch)
1692 (uri (string-append "http://download.linuxsampler.org/packages/"
1693 "libgig-" version ".tar.bz2"))
1694 (sha256
1695 (base32
1696 "1wr8mwjmqpnyz6bx9757lspiii1zzn8zfbqsvn2ipzpgqkxv6kaz"))))
1697 (build-system gnu-build-system)
1698 (inputs
1699 `(("libuuid" ,util-linux)
1700 ("libsndfile" ,libsndfile)))
1701 (native-inputs
1702 `(("pkg-config" ,pkg-config)))
1703 (home-page "http://linuxsampler.org/libgig/")
1704 (synopsis "C++ library for working with Gigasampler (.gig) files")
1705 (description
1706 "Libgig is a C++ library for loading, modifying existing and creating new
1707Gigasampler (.gig) files and DLS (Downloadable Sounds) Level 1/2 files, KORG
1708sample based instruments (.KSF and .KMP files), SoundFont v2 (.sf2) files and
1709AKAI sampler data. The package includes a couple of command line tools based
1710on the library.")
1711 ;; The library and tools are released under the GPL, except the AKAI
1712 ;; classes which are released under the LGPL.
1713 (license (list license:gpl2+ license:lgpl2.1+))))
1714
a9f55bf2
RW
1715(define-public jack-keyboard
1716 (package
1717 (name "jack-keyboard")
1718 (version "2.5")
1719 (source
1720 (origin
1721 (method url-fetch)
1722 (uri (string-append "mirror://sourceforge/jack-keyboard/jack-keyboard/"
1723 version "/jack-keyboard-" version ".tar.gz"))
1724 (sha256
1725 (base32
1726 "0mzmg8aavybcfdlq2yd9d0vscqd6is5p6jzrgfpfm5j3xdcvh2s3"))))
1727 (build-system gnu-build-system)
1728 (inputs
1729 `(("jack" ,jack-1)
1730 ("lash" ,lash)
1731 ("gtk+" ,gtk+-2)))
1732 (native-inputs
1733 `(("pkg-config" ,pkg-config)))
1734 (home-page "http://jack-keyboard.sourceforge.net/")
1735 (synopsis "Virtual MIDI keyboard")
1736 (description "Jack-keyboard is a virtual MIDI keyboard, a program that
1737allows you to send JACK MIDI events (i.e. play) using your PC keyboard.")
1738 (license license:bsd-2)))
1739
658212eb
LF
1740(define-public cursynth
1741 (package
1742 (name "cursynth")
1743 (version "1.5")
1744 (source
1745 (origin
1746 (method url-fetch)
1747 (uri (string-append "mirror://gnu/cursynth/cursynth-"
1748 version ".tar.gz"))
1749 (sha256
1750 (base32 "1dhphsya41rv8z6yqcv9l6fwbslsds4zh1y56zizi39nd996d40v"))
fc1adab1 1751 (patches (search-patches "cursynth-wave-rand.patch"))))
658212eb
LF
1752 (build-system gnu-build-system)
1753 (native-inputs `(("pkg-config" ,pkg-config)))
1754 ;; TODO: See https://github.com/iyoko/cursynth/issues/4 which currently
1755 ;; prevents us from using pulseaudio
1756 (inputs `(("ncurses" ,ncurses)
1757 ("alsa" ,alsa-lib)))
6fd52309 1758 (home-page "https://www.gnu.org/software/cursynth/")
658212eb
LF
1759 (synopsis "Polyphonic and MIDI subtractive music synthesizer using curses")
1760 (description "GNU cursynth is a polyphonic synthesizer that runs
1761graphically in the terminal. It is built on a full-featured subtractive
1762synthesis engine. Notes and parameter changes may be entered via MIDI or the
1763computer's keyboard.")
1764 (license license:gpl3+)))
a763ce7d
RW
1765
1766(define-public qtractor
1767 (package
1768 (name "qtractor")
873253dd 1769 (version "0.8.1")
a763ce7d
RW
1770 (source (origin
1771 (method url-fetch)
1772 (uri (string-append "http://downloads.sourceforge.net/qtractor/"
1773 "qtractor-" version ".tar.gz"))
1774 (sha256
1775 (base32
873253dd 1776 "1pvs9r5ykfaci900p0kz2xc5xsrswnwwbcl2chsvd98f1ns4vwds"))))
a763ce7d
RW
1777 (build-system gnu-build-system)
1778 (arguments `(#:tests? #f)) ; no "check" target
1779 (inputs
1780 `(("qt" ,qt)
1781 ("alsa-lib" ,alsa-lib)
1782 ("jack" ,jack-1)
1783 ("libsndfile" ,libsndfile)
1784 ("ladspa" ,ladspa)
1785 ("lv2" ,lv2)
1786 ("lilv" ,lilv)
1787 ("suil" ,suil)
1788 ("libsamplerate" ,libsamplerate)
1789 ("libvorbis" ,libvorbis)
1790 ("libmad" ,libmad)
1791 ("rubberband" ,rubberband)
1792 ("liblo" ,liblo)
1793 ("zlib" ,zlib)))
1794 (native-inputs
1795 `(("pkg-config" ,pkg-config)))
8071bbbc 1796 (home-page "http://qtractor.org/")
a763ce7d
RW
1797 (synopsis "Audio/MIDI multi-track sequencer")
1798 (description
1799 "Qtractor is an Audio/MIDI multi-track sequencer application. It uses
1800JACK for audio and ALSA sequencer for MIDI as multimedia infrastructures and
1801follows a traditional multi-track tape recorder control paradigm.")
1802 (license license:gpl2+)))
aa0edd3f 1803
849c3d03
RW
1804(define-public ams-lv2
1805 (package
1806 (name "ams-lv2")
1807 (version "1.2.0")
1808 (source
1809 (origin
1810 (method url-fetch)
1811 (uri (string-append "https://github.com/blablack/ams-lv2/"
1812 "archive/" version ".tar.gz"))
1813 (file-name (string-append name "-" version ".tar.gz"))
1814 (sha256
1815 (base32
1816 "1392spswkhfd38fggf584wb3m8aqpg7csfrs9zxnzyvhgmp0fgqk"))))
1817 (build-system waf-build-system)
8a3ce2c7
EF
1818 (arguments
1819 `(#:phases
1820 (modify-phases %standard-phases
1821 (add-after 'unpack 'remove-sse-flags
1822 (lambda* (#:key system #:allow-other-keys)
1823 (when (not (or (string-prefix? "x86_64" system)
1824 (string-prefix? "i686" system)))
1825 (substitute* "wscript"
1826 (("'-msse', '-mfpmath=sse', ") ""))
1827 #t))))
1828 #:tests? #f)) ; no tests
849c3d03
RW
1829 (inputs
1830 `(("lv2" ,lv2)
1831 ("lvtk" ,lvtk)
1832 ("gtkmm" ,gtkmm-2)
1833 ("gtk" ,gtk+-2)
1834 ("cairo" ,cairo)
1835 ("fftw" ,fftw)))
1836 (native-inputs
1837 `(("pkg-config" ,pkg-config)))
1838 (home-page "https://objectivewave.wordpress.com/ams-lv2/")
1839 (synopsis "Port of Alsa Modular Synth internal modules into LV2")
1840 (description "This set of LV2 plugins is a port of the internal modules
1841found in Alsa Modular Synth. These plugins are used to create modular
1842synthesizers and contain: VCO, VCF, VCA, LFO, slew limiter, envelopes, sample
1843and hold, etc.")
1844 (license license:gpl2)))
1845
aed023ff
RW
1846(define-public gxtuner
1847 (package
1848 (name "gxtuner")
1849 (version "2.3")
1850 (source (origin
1851 (method url-fetch)
1852 (uri (string-append "https://github.com/brummer10/gxtuner/"
1853 "archive/v" version ".tar.gz"))
1854 (file-name (string-append name "-" version ".tar.gz"))
1855 (sha256
1856 (base32
1857 "1abpxiydn4c9wssz6895hnad9ipkcy3rkgzbnanvwb46nm44x6if"))))
1858 (build-system gnu-build-system)
1859 (arguments
1860 `(#:make-flags
1861 (list (string-append "PREFIX=" (assoc-ref %outputs "out"))
1862 (string-append "INCLUDE_L_DIR="
1863 (assoc-ref %build-inputs "zita-resampler")
1864 "/include/"))
1865 #:phases
1866 (modify-phases %standard-phases
1867 (delete 'configure))))
1868 (inputs
1869 `(("gtk+" ,gtk+-2)
1870 ("jack" ,jack-1)
1871 ("fftwf" ,fftwf)
1872 ("cairo" ,cairo)
1873 ("zita-resampler" ,zita-resampler)))
1874 (native-inputs
1875 `(("pkg-config" ,pkg-config)))
1876 (home-page "https://github.com/brummer10/gxtuner")
1877 (synopsis "Guitar tuner")
1878 (description "GXtuner is a simple guitar tuner for JACK with an
1879analogue-like user interface.")
1880 (license license:gpl2+)))
1881
c2c9e748
RW
1882(define-public mod-host
1883 ;; The last release was in 2014 but since then more than 140 commits have
1884 ;; been made.
1885 (let ((commit "72aca771e3a4e3889641b9bab84985586c9bb926")
1886 (revision "1"))
1887 (package
1888 (name "mod-host")
1889 (version (string-append "0.10.6-" revision "." (string-take commit 9)))
1890 (source (origin
1891 (method git-fetch)
1892 (uri (git-reference
1893 (url "https://github.com/moddevices/mod-host")
1894 (commit commit)))
1895 (sha256
1896 (base32
1897 "19szi8cy65jlchbrmbjbma03g6gxj9zyyp4dgw1k06r0cxbx82gq"))
1898 (file-name (string-append name "-" version "-checkout"))))
1899 (build-system gnu-build-system)
1900 (arguments
1901 `(#:tests? #f ; no tests included
1902 #:make-flags
1903 (list (string-append "PREFIX=" (assoc-ref %outputs "out"))
1904 "CC=gcc")
1905 #:phases
1906 (modify-phases %standard-phases
1907 (delete 'configure)
1908 (add-after 'unpack 'fix-jack-installation-directory
1909 (lambda _
1910 ;; Do not attempt to install files to output of "jack" package.
1911 (substitute* "Makefile"
1912 (("\\$\\(shell pkg-config --variable=libdir jack\\)")
1913 "lib"))
1914 #t)))))
1915 (inputs
1916 `(("lilv" ,lilv)
c96cb01a
DC
1917 ("fftw" ,fftw)
1918 ("fftwf" ,fftwf)
c2c9e748
RW
1919 ("lv2" ,lv2)
1920 ("jack" ,jack-1)
1921 ("readline" ,readline)))
1922 (native-inputs
1923 `(("pkg-config" ,pkg-config)
1924 ("python" ,python-2)))
1925 (home-page "https://github.com/moddevices/mod-host")
1926 (synopsis "LV2 host for Jack controllable via socket or command line")
1927 (description "mod-host is an LV2 plugin host for JACK, controllable via
1928socket or command line.")
1929 (license license:gpl3+))))
1930
aa0edd3f
AM
1931(define-public pianobar
1932 (package
1933 (name "pianobar")
1934 (version "2015.11.22")
1935 (source (origin
1936 (method url-fetch)
1937 (uri (string-append "https://github.com/PromyLOPh/"
1938 name "/archive/" version ".tar.gz"))
1939 (file-name (string-append name "-" version ".tar.gz"))
1940 (sha256
1941 (base32
1942 "022df19bhxqvkhy0qy21xahba5s1fm17b13y0p9p9dnf2yl44wfv"))))
1943 (build-system gnu-build-system)
1944 (arguments
1945 `(#:tests? #f ; no tests
1946 #:make-flags (list "CC=gcc" "CFLAGS=-std=c99"
1947 (string-append "PREFIX=" %output))
1948 #:phases (modify-phases %standard-phases
1949 (delete 'configure))))
1950 (inputs
1951 `(("ao" ,ao)
1952 ("curl" ,curl)
1953 ("libgcrypt" ,libgcrypt)
1954 ("json-c" ,json-c)
1955 ("ffmpeg" ,ffmpeg)))
1956 (native-inputs
1957 `(("pkg-config" ,pkg-config)))
1958 (home-page "http://6xq.net/projects/pianobar/")
1959 (synopsis "Console-based pandora.com player")
1960 (description "pianobar is a console-based music player for the
1961personalized online radio pandora.com. It has configurable keys for playing
1962and managing stations, can be controlled remotely via fifo, and can run
1963event-based scripts for scrobbling, notifications, etc.")
1964 (license license:expat)))
3f7a182d
LF
1965
1966(define-public python-mutagen
1967 (package
1968 (name "python-mutagen")
653439c6 1969 (version "1.36")
3f7a182d
LF
1970 (source (origin
1971 (method url-fetch)
1972 (uri (pypi-uri "mutagen" version))
1973 (sha256
1974 (base32
653439c6 1975 "1kabb9b81hgvpd3wcznww549vss12b1xlvpnxg1r6n4c7gikgvnp"))))
3f7a182d 1976 (build-system python-build-system)
4228a79e
LF
1977 (native-inputs
1978 `(("python-pytest" ,python-pytest)))
3f7a182d
LF
1979 (home-page "https://bitbucket.org/lazka/mutagen")
1980 (synopsis "Read and write audio tags")
1981 (description "Mutagen is a Python module to handle audio metadata. It
1982supports ASF, FLAC, M4A, Monkey’s Audio, MP3, Musepack, Ogg FLAC, Ogg Speex, Ogg
1983Theora, Ogg Vorbis, True Audio, WavPack and OptimFROG audio files. All versions
1984of ID3v2 are supported, and all standard ID3v2.4 frames are parsed. It can read
1985Xing headers to accurately calculate the bitrate and length of MP3s. ID3 and
1986APEv2 tags can be edited regardless of audio format. It can also manipulate Ogg
1987streams on an individual packet/page level.")
1988 (license license:gpl2))) ; "later version" never mentioned
1989
1990(define-public python2-mutagen
1991 (package-with-python2 python-mutagen))
8975de88
LF
1992
1993(define-public python-musicbrainzngs
1994 (package
1995 (name "python-musicbrainzngs")
daedf34d 1996 (version "0.6")
8975de88
LF
1997 (source (origin
1998 (method url-fetch)
1999 (uri (pypi-uri "musicbrainzngs" version))
2000 (sha256
2001 (base32
daedf34d 2002 "1dddarpjawryll2wss65xq3v9q8ln8dan7984l5dxzqx88d2dvr8"))))
8975de88 2003 (build-system python-build-system)
daedf34d
LF
2004 (arguments
2005 '(;; The tests fail suffer from race conditions:
2006 ;; https://github.com/alastair/python-musicbrainzngs/issues/211
2007 #:tests? #f))
8975de88
LF
2008 (home-page "https://python-musicbrainzngs.readthedocs.org/")
2009 (synopsis "Python bindings for MusicBrainz NGS webservice")
2010 (description "Musicbrainzngs implements Python bindings of the MusicBrainz
2011web service. This library can be used to retrieve music metadata from the
2012MusicBrainz database.")
2013 ;; 'musicbrainzngs/compat.py' is ISC licensed.
2014 (license (list license:bsd-2 license:isc))))
2015
2016(define-public python2-musicbrainzngs
2017 (package-with-python2 python-musicbrainzngs))
e8fee648 2018
a2eab422 2019(define-public python2-pyechonest
e8fee648 2020 (package
a2eab422 2021 (name "python2-pyechonest")
e8fee648
LF
2022 (version "9.0.0")
2023 (source (origin
2024 (method url-fetch)
2025 (uri (pypi-uri "pyechonest" version))
2026 (sha256
2027 (base32
2028 "1584nira3rkiman9dm81kdshihmkj21s8navndz2l8spnjwb790x"))))
2029 (build-system python-build-system)
a2eab422
LF
2030 (arguments
2031 `(;; Python 3 is not supported:
2032 ;; https://github.com/echonest/pyechonest/issues/42
2033 #:python ,python-2))
e8fee648
LF
2034 (home-page "https://github.com/echonest/pyechonest")
2035 (synopsis "Python interface to The Echo Nest APIs")
d3e3468f
LF
2036 (description "Pyechonest is a Python library for the Echo Nest API. With
2037Pyechonest you have Python access to the entire set of API methods including:
e8fee648
LF
2038
2039@enumerate
2040@item artist - search for artists by name, description, or attribute, and get
2041back detailed information about any artist including audio, similar artists,
2042blogs, familiarity, hotttnesss, news, reviews, urls and video.
2043@item song - search songs by artist, title, description, or attribute (tempo,
2044duration, etc) and get detailed information back about each song, such as
2045hotttnesss, audio_summary, or tracks.
2046@item track - upload a track to the Echo Nest and receive summary information
2047about the track including key, duration, mode, tempo, time signature along with
2048detailed track info including timbre, pitch, rhythm and loudness information.
2049@end enumerate\n")
a2eab422 2050 (license license:bsd-3)))
acd7351f
LF
2051
2052(define-public python-pylast
2053 (package
2054 (name "python-pylast")
b04d9b97 2055 (version "1.6.0")
acd7351f
LF
2056 (source (origin
2057 (method url-fetch)
2058 (uri (pypi-uri "pylast" version))
2059 (sha256
2060 (base32
b04d9b97 2061 "0bml11gfkxqd3i2jxkn5k2xllc4rvxjcyhs8an05gcyy1zp2bwvb"))))
acd7351f 2062 (build-system python-build-system)
810f8983
MB
2063 (arguments
2064 '(#:tests? #f)) ; FIXME: Requires unpackaged python-flaky.
acd7351f
LF
2065 (native-inputs
2066 `(("python-coverage" ,python-coverage)
2067 ("python-mock" ,python-mock)
2068 ("python-pep8" ,python-pep8)
2069 ("python-pytest" ,python-pytest)
2070 ("python-pyflakes" ,python-pyflakes)
2071 ("python-pyyaml" ,python-pyyaml)))
2072 (propagated-inputs
2073 `(("python-six" ,python-six)))
2074 (home-page "https://github.com/pylast/pylast")
2075 (synopsis "Python interface to Last.fm and Libre.fm")
2076 (description "A Python interface to Last.fm and other API-compatible
2077websites such as Libre.fm.")
5c31f4aa 2078 (license license:asl2.0)))
acd7351f
LF
2079
2080(define-public python2-pylast
5c31f4aa 2081 (package-with-python2 python-pylast))
3bf429af
LF
2082
2083(define-public beets
2084 (package
2085 (name "beets")
541b3f59 2086 (version "1.4.3")
3bf429af
LF
2087 (source (origin
2088 (method url-fetch)
23319ed6 2089 (uri (pypi-uri "beets" version))
3bf429af
LF
2090 (sha256
2091 (base32
541b3f59 2092 "0r743a2pv1iyw50jsdl01v2ml3pdkhdp920a5d1wsacak48vwgxr"))))
3bf429af
LF
2093 (build-system python-build-system)
2094 (arguments
0d48ff81 2095 `(#:phases
3bf429af
LF
2096 (modify-phases %standard-phases
2097 (add-after 'unpack 'set-HOME
36c2c8c8
LF
2098 (lambda _ (setenv "HOME" (string-append (getcwd) "/tmp"))))
2099 (replace 'check
2100 (lambda _ (zero? (system* "nosetests" "-v")))))))
3bf429af 2101 (native-inputs
0d48ff81
LF
2102 `(("python-beautifulsoup4" ,python-beautifulsoup4)
2103 ("python-flask" ,python-flask)
2104 ("python-mock" ,python-mock)
2105 ("python-mpd2" ,python-mpd2)
2106 ("python-nose" ,python-nose)
2107 ("python-pathlib" ,python-pathlib)
2108 ("python-pyxdg" ,python-pyxdg)
2109 ("python-pylast" ,python-pylast)
2110 ("python-rarfile" ,python-rarfile)
2111 ("python-responses" ,python-responses)))
3bf429af 2112 ;; TODO: Install optional plugins and dependencies.
b3470031 2113 (inputs
0d48ff81 2114 `(("python-discogs-client" ,python-discogs-client)
0d48ff81
LF
2115 ("python-jellyfish" ,python-jellyfish)
2116 ("python-munkres" ,python-munkres)
2117 ("python-musicbrainzngs" ,python-musicbrainzngs)
2118 ("python-mutagen" ,python-mutagen)
2119 ("python-pyyaml" ,python-pyyaml)
2120 ("python-unidecode" ,python-unidecode)))
3bf429af
LF
2121 (home-page "http://beets.io")
2122 (synopsis "Music organizer")
2123 (description "The purpose of beets is to get your music collection right
2124once and for all. It catalogs your collection, automatically improving its
2125metadata as it goes using the MusicBrainz database. Then it provides a variety
2126of tools for manipulating and accessing your music.")
2127 (license license:expat)))
21d18113
KY
2128
2129(define-public milkytracker
2130 (package
2131 (name "milkytracker")
e3b2e943 2132 (version "1.0.0")
21d18113
KY
2133 (source (origin
2134 (method url-fetch)
e3b2e943
KK
2135 (uri (string-append "https://github.com/milkytracker/"
2136 "MilkyTracker/archive/v" version ".tar.gz"))
2137 (file-name (string-append name "-" version ".tar.gz"))
21d18113
KY
2138 (sha256
2139 (base32
e3b2e943
KK
2140 "1p1jd4h274jvcvl05l01v9bj19zhq4sjag92v1zawyi93ib85abz"))
2141 (modules '((guix build utils)))
2142 ;; Remove non-FSDG compliant sample songs.
2143 (snippet
2144 '(begin
2145 (delete-file-recursively "resources/music")
2146 (substitute* "CMakeLists.txt"
2147 (("add_subdirectory\\(resources/music\\)") ""))))))
2148 (build-system cmake-build-system)
21d18113 2149 (arguments
e3b2e943 2150 '(#:tests? #f)) ; no check target
21d18113
KY
2151 (inputs
2152 `(("alsa-lib" ,alsa-lib)
2153 ("jack" ,jack-1)
e3b2e943 2154 ("sdl" ,sdl2)
21d18113
KY
2155 ("zlib" ,zlib)))
2156 (native-inputs
2157 `(("pkg-config" ,pkg-config)))
2158 (synopsis "Music tracker for working with .MOD/.XM module files")
2159 (description "MilkyTracker is a music application for creating .MOD and .XM
2160module files. It attempts to recreate the module replay and user experience of
2161the popular DOS program Fasttracker II, with special playback modes available
2162for improved Amiga ProTracker 2/3 compatibility.")
1b35fea1 2163 (home-page "http://milkytracker.titandemo.org/")
21d18113
KY
2164 ;; 'src/milkyplay' is under Modified BSD, the rest is under GPL3 or later.
2165 (license (list license:bsd-3 license:gpl3+))))
13416a10 2166
89bcf3fc
KK
2167(define-public schismtracker
2168 (package
2169 (name "schismtracker")
9342c5a0 2170 (version "20160913")
89bcf3fc
KK
2171 (source (origin
2172 (method url-fetch)
2173 (uri (string-append
2174 "https://github.com/" name "/" name "/archive/"
2175 version ".tar.gz"))
2176 (file-name (string-append name "-" version ".tar.gz"))
2177 (sha256
2178 (base32
9342c5a0 2179 "1sc813qi4gl6mf7xp8rrarvyigzhxv3qdrryqsy42yxsb2jcwbrw"))
89bcf3fc
KK
2180 (modules '((guix build utils)))
2181 (snippet
2182 ;; Remove use of __DATE__ and __TIME__ for reproducibility.
2183 `(substitute* "schism/version.c"
9342c5a0 2184 (("Schism Tracker built %s %s.*$")
89bcf3fc
KK
2185 (string-append "Schism Tracker version " ,version "\");"))))))
2186 (build-system gnu-build-system)
2187 (arguments
2188 `(#:phases
2189 (modify-phases %standard-phases
2190 (add-after 'unpack 'autoconf
2191 (lambda _ (zero? (system* "autoreconf" "-vfi"))))
2192 (add-before 'configure 'link-libm
2193 (lambda _ (setenv "LIBS" "-lm") #t)))))
2194 (native-inputs
2195 `(("autoconf" ,autoconf)
2196 ("automake" ,automake)
2197 ("python" ,python)))
2198 (inputs
2199 `(("alsa-lib" ,alsa-lib) ; for asound dependency
2200 ("libx11" ,libx11)
2201 ("libxext" ,libxext)
2202 ("sdl" ,sdl)))
2203 (home-page "http://schismtracker.org")
2204 (synopsis "Oldschool sample-based music composition tool")
2205 (description
2206 "Schism Tracker is a reimplementation of Impulse Tracker, a program used to
2207create high quality music without the requirements of specialized, expensive
2208equipment, and with a unique \"finger feel\" that is difficult to replicate in
2209part. The player is based on a highly modified version of the ModPlug engine,
2210with a number of bugfixes and changes to improve IT playback.")
2211 (license license:gpl2+)))
2212
13416a10
KY
2213(define-public moc
2214 (package
2215 (name "moc")
2fbc004f 2216 (version "2.5.2")
13416a10
KY
2217 (source (origin
2218 (method url-fetch)
2219 (uri (string-append "http://ftp.daper.net/pub/soft/"
2220 name "/stable/"
2221 name "-" version ".tar.bz2"))
2222 (sha256
2223 (base32
2fbc004f
KK
2224 "026v977kwb0wbmlmf6mnik328plxg8wykfx9ryvqhirac0aq39pk"))
2225 (modules '((guix build utils)))
2226 (snippet
2227 ;; Remove use of __DATE__ and __TIME__ for reproducibility.
2228 '(substitute* "main.c"
2229 (("printf \\(\" Built : %s\", __DATE__\\);") "")
2230 (("printf \\(\" %s\", __TIME__\\);") "")))))
13416a10
KY
2231 (build-system gnu-build-system)
2232 (inputs
2233 `(("alsa-lib" ,alsa-lib)
2234 ("curl" ,curl)
2235 ("faad2" ,faad2)
2236 ("ffmpeg" ,ffmpeg)
2237 ("file" ,file)
2238 ("jack" ,jack-1)
2239 ("libid3tag" ,libid3tag)
2240 ("libltdl" ,libltdl)
2241 ("libmodplug" ,libmodplug)
2242 ("libmpcdec" ,libmpcdec)
2243 ("libmad" ,libmad)
2244 ("ncurses" ,ncurses)
2245 ("openssl" ,openssl)
2246 ("sasl" ,cyrus-sasl)
2247 ("speex" ,speex)
2248 ("taglib" ,taglib)
2249 ("wavpack" ,wavpack)
2250 ("zlib" ,zlib)))
2251 (native-inputs
2252 `(("pkg-config" ,pkg-config)))
2253 (synopsis "Console audio player designed to be powerful and easy to use")
2254 (description
2255 "Music on Console is a console audio player that supports many file
2256formats, including most audio formats recognized by FFMpeg.")
2257 (home-page "http://moc.daper.net")
2258 (license license:gpl2+)))
6d3ef286
JF
2259
2260(define-public midicsv
2261 (package
2262 (name "midicsv")
2263 (version "1.1")
2264 (source (origin
2265 (method url-fetch)
2266 (uri (string-append "http://www.fourmilab.ch/webtools/midicsv/"
2267 name "-" version ".tar.gz"))
2268 (sha256
2269 (base32
2270 "1vvhk2nf9ilfw0wchmxy8l13hbw9cnpz079nsx5srsy4nnd78nkw"))))
2271 (build-system gnu-build-system)
2272 (arguments
2273 `(#:phases (modify-phases %standard-phases (delete 'configure))
2274 #:make-flags (list "CC=gcc" (string-append "INSTALL_DEST=" %output))))
2275 (synopsis "Convert MIDI files to and from CSV")
2276 (description
2277 "Midicsv reads a standard MIDI file and decodes it into a comma-separated
2278value file (CSV), which preserves all the information in the MIDI file. The
2279ASCII CSV file may be loaded into a spreadsheet or database application, or
2280processed by a program to transform the MIDI data (for example, to key
2281transpose a composition or extract a track from a multi-track sequence). A
2282CSV file in the format created by midicsv may be converted back into a
2283standard MIDI file with the csvmidi program.")
2284 (home-page "http://www.fourmilab.ch/webtools/midicsv/")
2285 (license license:public-domain)))
49604680
RW
2286
2287(define-public gx-guvnor-lv2
2288 (let ((commit "9f528a7623a201383e119bb6a2df32b18396a9d5")
2289 (revision "1"))
2290 (package
2291 (name "gx-guvnor-lv2")
2292 (version (string-append "0-" revision "." (string-take commit 9)))
2293 (source (origin
2294 (method git-fetch)
2295 (uri (git-reference
2296 (url "https://github.com/brummer10/GxGuvnor.lv2")
2297 (commit commit)))
2298 (sha256
2299 (base32
2300 "10zx84p2vd7i1yqc5ma9p17927265j4g0zfwv9rxladw0nm8y45k"))
2301 (file-name (string-append name "-" version "-checkout"))))
2302 (build-system gnu-build-system)
2303 (arguments
2304 `(;; The check target is used only to output a warning.
2305 #:tests? #f
2306 #:make-flags
2307 (list (string-append "DESTDIR=" (assoc-ref %outputs "out")))
2308 #:phases
2309 (modify-phases %standard-phases
2310 (replace 'configure
2311 (lambda _
2312 (substitute* "Makefile"
2313 (("INSTALL_DIR = .*") "INSTALL_DIR=/lib/lv2\n")
2314 ;; Avoid rebuilding everything
2315 (("install : all") "install:"))
2316 #t)))))
2317 (inputs
2318 `(("lv2" ,lv2)))
2319 (home-page "https://github.com/brummer10/GxGuvnor.lv2")
2320 (synopsis "Overdrive/distortion pedal simulation")
2321 (description "This package provides the LV2 plugin \"GxGuvnor\", a
2322simulation of an overdrive or distortion pedal for guitars.")
2323 ;; The LICENSE file says GPLv3 but the license headers in the files say
2324 ;; GPLv2 or later.
2325 (license license:gpl2+))))
85ae347e
RW
2326
2327(define-public gx-vbass-preamp-lv2
2328 (let ((commit "0e599abab10c7669dd444e5d06f671c2fc1b9c6c")
2329 (revision "1"))
2330 (package (inherit gx-guvnor-lv2)
2331 (name "gx-vbass-preamp-lv2")
2332 (version (string-append "0-" revision "." (string-take commit 9)))
2333 (source (origin
2334 (method git-fetch)
2335 (uri (git-reference
2336 (url "https://github.com/brummer10/GxVBassPreAmp.lv2")
2337 (commit commit)))
2338 (sha256
2339 (base32
2340 "1dzksdfrva666gpi62fd2ni9rhf18sl917f1894qr0b17pbdh9k1"))
2341 (file-name (string-append name "-" version "-checkout"))))
2342 (home-page "https://github.com/brummer10/GxVBassPreAmp.lv2")
2343 (synopsis "Simulation of the Vox Venue Bass 100 Pre Amp Section")
2344 (description "This package provides the LV2 plugin \"GxVBassPreAmp\", a
2345pre-amplifier simulation modelled after the 1984 Vox Venue Bass 100 Pre Amp
2346Section."))))
cdc7a021
RW
2347
2348(define-public gx-overdriver-lv2
2349 (let ((commit "ed71801987449414bf3adaa0dbfac68e8775f1ce")
2350 (revision "1"))
2351 (package (inherit gx-guvnor-lv2)
2352 (name "gx-overdriver-lv2")
2353 (version (string-append "0-" revision "." (string-take commit 9)))
2354 (source (origin
2355 (method git-fetch)
2356 (uri (git-reference
2357 (url "https://github.com/brummer10/GxOverDriver.lv2")
2358 (commit commit)))
2359 (sha256
2360 (base32
2361 "13j614jh525fbkby79nnzwj0z1ac0c9wclyn5pfqvkmx6a7j24r8"))
2362 (file-name (string-append name "-" version "-checkout"))))
2363 (home-page "https://github.com/brummer10/GxOverDriver.lv2")
2364 (synopsis "Overdrive effect with level and tone control")
2365 (description "This package provides the LV2 plugin \"GxOverDriver\", an
2366overdrive effect."))))
4d95cd30
RW
2367
2368(define-public gx-tone-mender-lv2
2369 (let ((commit "b6780b4a3e4782b3ed0e5882d6788f178aed138f")
2370 (revision "1"))
2371 (package (inherit gx-guvnor-lv2)
2372 (name "gx-tone-mender-lv2")
2373 (version (string-append "0-" revision "." (string-take commit 9)))
2374 (source (origin
2375 (method git-fetch)
2376 (uri (git-reference
2377 (url "https://github.com/brummer10/GxToneMender.lv2")
2378 (commit commit)))
2379 (sha256
2380 (base32
2381 "07qdcfsvv2vdnfnjh91pfgvjdcs5y91nvwfm8c0z8fp6b4bk7a9q"))
2382 (file-name (string-append name "-" version "-checkout"))))
2383 (home-page "https://github.com/brummer10/GxToneMender.lv2")
2384 (synopsis "Clean boost with a 3-knob tonestack")
2385 (description "This package provides the LV2 plugin \"GxToneMender\", a
2386clean boost effect with a 3-knob tonestack."))))
4d4bfdc2
RW
2387
2388(define-public gx-push-pull-lv2
2389 (let ((commit "7f76ae2068498643ac8671ee0930b13ee3fd8eb5")
2390 (revision "1"))
2391 (package (inherit gx-guvnor-lv2)
2392 (name "gx-push-pull-lv2")
2393 (version (string-append "0-" revision "." (string-take commit 9)))
2394 (source (origin
2395 (method git-fetch)
2396 (uri (git-reference
2397 (url "https://github.com/brummer10/GxPushPull.lv2")
2398 (commit commit)))
2399 (sha256
2400 (base32
2401 "12f5hwck2irph0gjbj8xy8jqcqdwb8l1hlwf29k0clz52h1jhb5q"))
2402 (file-name (string-append name "-" version "-checkout"))))
2403 (home-page "https://github.com/brummer10/GxPushPull.lv2")
2404 (synopsis "Octave up push pull transistor fuzz simulation")
2405 (description "This package provides the LV2 plugin \"GxPushPull\", a
2406simulation of a push pull transistor fuzz effect with added high octave."))))
3eb1a964
RW
2407
2408(define-public gx-suppa-tone-bender-lv2
2409 (let ((commit "4e6dc713ec24e7fcf5ea23b7e685af627c01b9c9")
2410 (revision "1"))
2411 (package (inherit gx-guvnor-lv2)
2412 (name "gx-suppa-tone-bender-lv2")
2413 (version (string-append "0-" revision "." (string-take commit 9)))
2414 (source (origin
2415 (method git-fetch)
2416 (uri (git-reference
2417 (url "https://github.com/brummer10/GxSuppaToneBender.lv2")
2418 (commit commit)))
2419 (sha256
2420 (base32
2421 "1i22xr252nkbazkwidll2zb3i96610gx65qn5djdkijlz7j77138"))
2422 (file-name (string-append name "-" version "-checkout"))))
2423 (home-page "https://github.com/brummer10/GxSuppaToneBender.lv2")
2424 (synopsis "Simulation of the Vox Suppa Tone Bender pedal")
2425 (description "This package provides the LV2 plugin
2426\"GxSuppaToneBender\", a simulation modelled after the Vox Suppa Tone Bender
2427pedal."))))
664f677f
RW
2428
2429(define-public gx-saturator-lv2
31de5e22
RW
2430 (let ((commit "0b581ac85c515325b9f16e51937cae6e1bf81a0a")
2431 (revision "2"))
664f677f
RW
2432 (package (inherit gx-guvnor-lv2)
2433 (name "gx-saturator-lv2")
2434 (version (string-append "0-" revision "." (string-take commit 9)))
2435 (source (origin
2436 (method git-fetch)
2437 (uri (git-reference
2438 (url "https://github.com/brummer10/GxSaturator.lv2")
2439 (commit commit)))
2440 (sha256
2441 (base32
31de5e22 2442 "1cl785pzq8zk55m1rnhfd6qsabci6kpf4pf002gwr91vagyq246z"))
664f677f
RW
2443 (file-name (string-append name "-" version "-checkout"))))
2444 (home-page "https://github.com/brummer10/GxSaturator.lv2")
2445 (synopsis "Saturation effect")
2446 (description "This package provides the LV2 plugin \"GxSaturator\", a
2447saturation effect."))))
89412238
RW
2448
2449(define-public gx-hyperion-lv2
dad6cb50
RW
2450 (let ((commit "6a096a664e553e551e179e85cf390bd1683410fb")
2451 (revision "2"))
89412238
RW
2452 (package (inherit gx-guvnor-lv2)
2453 (name "gx-hyperion-lv2")
2454 (version (string-append "0-" revision "." (string-take commit 9)))
2455 (source (origin
2456 (method git-fetch)
2457 (uri (git-reference
2458 (url "https://github.com/brummer10/GxHyperion.lv2")
2459 (commit commit)))
2460 (sha256
2461 (base32
dad6cb50 2462 "1ksv3wmylhwbf6kjl2lnhr14h9rfl291cfm21471gnb1r68yqfxh"))
89412238
RW
2463 (file-name (string-append name "-" version "-checkout"))))
2464 (home-page "https://github.com/brummer10/GxHyperion.lv2")
2465 (synopsis "Simulation of the Hyperion Fuzz pedal")
2466 (description "This package provides the LV2 plugin \"GxHyperion\", a
2467simulation of the Hyperion Fuzz pedal."))))
32536f00
RW
2468
2469(define-public gx-voodoo-fuzz-lv2
c1802b08
RW
2470 (let ((commit "aec7889b489385e8add06126e7a36ae2e26254b1")
2471 (revision "2"))
32536f00
RW
2472 (package (inherit gx-guvnor-lv2)
2473 (name "gx-voodoo-fuzz-lv2")
2474 (version (string-append "0-" revision "." (string-take commit 9)))
2475 (source (origin
2476 (method git-fetch)
2477 (uri (git-reference
2478 (url "https://github.com/brummer10/GxVoodoFuzz.lv2")
2479 (commit commit)))
2480 (sha256
2481 (base32
c1802b08 2482 "0mc41ldlv89069iaysnfiqxy5h5sr8mdi5cxm3ij5q5v4jv3viwx"))
32536f00
RW
2483 (file-name (string-append name "-" version "-checkout"))))
2484 (home-page "https://github.com/brummer10/GxVoodoFuzz.lv2")
2485 (synopsis "Fuzz effect modelled after the Voodoo Lab SuperFuzz")
2486 (description "This package provides the LV2 plugin \"GxVoodooFuzz\", a
2487simulation modelled after the Voodoo Lab SuperFuzz pedal. It's basically a
2488Bosstone circuit, followed by the tone control of the FoxToneMachine in
2489parallel with a DarkBooster, followed by a volume control."))))
29f63222
RW
2490
2491(define-public gx-super-fuzz-lv2
1df4d85f
RW
2492 (let ((commit "f40389575812c909007d140d327ce579930b71f7")
2493 (revision "2"))
29f63222
RW
2494 (package (inherit gx-guvnor-lv2)
2495 (name "gx-super-fuzz-lv2")
2496 (version (string-append "0-" revision "." (string-take commit 9)))
2497 (source (origin
2498 (method git-fetch)
2499 (uri (git-reference
2500 (url "https://github.com/brummer10/GxSuperFuzz.lv2")
2501 (commit commit)))
2502 (sha256
2503 (base32
1df4d85f 2504 "174bibj8qzm8zr6f5h8bcj94iry17zravk8flpdy84n6yg7cixji"))
29f63222
RW
2505 (file-name (string-append name "-" version "-checkout"))))
2506 (home-page "https://github.com/brummer10/GxSuperFuzz.lv2")
2507 (synopsis "Fuzz effect modelled after the UniVox SuperFuzz")
2508 (description "This package provides the LV2 plugin \"GxVoodooFuzz\", an
2509analog simulation of the UniVox SuperFuzz pedal. In this simulation the trim
2510pot, which is usualy in the housing, is exposed as a control parameter. It
2511adjusts the amount of harmonics."))))
40bffdfa
RW
2512
2513(define-public gx-vintage-fuzz-master-lv2
a7cd2d44
RW
2514 (let ((commit "0fec0bc1e8a8ba909a68e916e036138a3425d7db")
2515 (revision "2"))
40bffdfa
RW
2516 (package (inherit gx-guvnor-lv2)
2517 (name "gx-vintage-fuzz-master-lv2")
2518 (version (string-append "0-" revision "." (string-take commit 9)))
2519 (source (origin
2520 (method git-fetch)
2521 (uri (git-reference
2522 (url "https://github.com/brummer10/GxVintageFuzzMaster.lv2")
2523 (commit commit)))
2524 (sha256
2525 (base32
a7cd2d44 2526 "06szi6d2iwkygbw5azhwzhcl2as4lmk2gs9hanngsf46a1zbdcp7"))
40bffdfa
RW
2527 (file-name (string-append name "-" version "-checkout"))))
2528 (home-page "https://github.com/brummer10/GxVintageFuzzMaster.lv2")
2529 (synopsis "Fuzz effect simulation of the vintage Fuzz Master")
2530 (description "This package provides the LV2 plugin
2531\"GxVintageFuzzMaster\", a simulation of the vintage Fuzz Master pedal."))))
631f8175
RW
2532
2533(define-public gx-slow-gear-lv2
8e6f6503
RW
2534 (let ((commit "cb852e0426f4e6fe077e7f1ede73a4da335cfc5e")
2535 (revision "2"))
631f8175
RW
2536 (package (inherit gx-guvnor-lv2)
2537 (name "gx-slow-gear-lv2")
2538 (version (string-append "0-" revision "." (string-take commit 9)))
2539 (source (origin
2540 (method git-fetch)
2541 (uri (git-reference
2542 (url "https://github.com/brummer10/GxSlowGear.lv2")
2543 (commit commit)))
2544 (sha256
2545 (base32
8e6f6503 2546 "0dp7afi1r3kzciiyn1hrkz6arsq47ys9sx5g4b7xa9k1dv92ishp"))
631f8175
RW
2547 (file-name (string-append name "-" version "-checkout"))))
2548 (home-page "https://github.com/brummer10/GxSlowGear.lv2")
2549 (synopsis "Slow gear audio effect")
2550 (description "This package provides the LV2 plugin \"GxSlowGear\", a
2551slow gear audio effect to produce volume swells."))))
d75e8f5a
RW
2552
2553(define-public gx-switchless-wah-lv2
cfcef2c2
RW
2554 (let ((commit "7b08691203314612999f0ce2328cdc1161cd6665")
2555 (revision "2"))
d75e8f5a
RW
2556 (package (inherit gx-guvnor-lv2)
2557 (name "gx-switchless-wah-lv2")
2558 (version (string-append "0-" revision "." (string-take commit 9)))
2559 (source (origin
2560 (method git-fetch)
2561 (uri (git-reference
2562 (url "https://github.com/brummer10/GxSwitchlessWah.lv2")
2563 (commit commit)))
2564 (sha256
2565 (base32
cfcef2c2 2566 "04jqfpncmrrqn34p21w4v9m2x5a5wsqwbm4f3byxvq4vcibwxzk2"))
d75e8f5a
RW
2567 (file-name (string-append name "-" version "-checkout"))))
2568 (home-page "https://github.com/brummer10/GxSwitchlessWah.lv2")
2569 (synopsis "Wah emulation with switchless activation")
2570 (description "This package provides the LV2 plugin \"GxSwitchlessWah\",
2571a simulation of an analog Wah pedal with switchless activation."))))
84d53724
RW
2572
2573(define-public mod-utilities
2574 (let ((commit "7cdeeac26ae682730740105ece121d4dddb8ba3f")
2575 (revision "1"))
2576 (package
2577 (name "mod-utilities")
2578 (version (string-append "0-" revision "." (string-take commit 9)))
2579 (source (origin
2580 (method git-fetch)
2581 (uri (git-reference
2582 (url "https://github.com/moddevices/mod-utilities.git")
2583 (commit commit)))
2584 (sha256
2585 (base32
2586 "1ilnkbrmwrszxvc21qlb86h29yz7cnc6rcp0jmna1y693ny2qhf4"))
2587 (file-name (string-append name "-" version "-checkout"))))
2588 (build-system gnu-build-system)
2589 (arguments
2590 `(#:tests? #f ; there are no tests
2591 #:make-flags
2592 (list (string-append "INSTALL_PATH="
2593 (assoc-ref %outputs "out")
2594 "/lib/lv2"))
2595 #:phases
2596 (modify-phases %standard-phases
2597 (delete 'configure))))
2598 (inputs
2599 `(("lv2" ,lv2)))
2600 (home-page "https://github.com/moddevices/mod-utilities")
2601 (synopsis "LV2 utility plugins")
2602 (description "This package provides LV2 audio utility plugins, such as
2603filters, crossovers, simple gain plugins without zipper noise, switch box
2604plugins, a switch trigger, a toggle switch, and a peakmeter.")
2605 (license license:gpl2+))))
d3db5efb 2606
951581a2
RW
2607(define-public ingen
2608 (let ((commit "fd147d0b888090bfb897505852c1f25dbdf77e18")
2609 (revision "1"))
2610 (package
2611 (name "ingen")
2612 (version (string-append "0.0.0-" revision "."
2613 (string-take commit 9)))
2614 (source
2615 (origin
2616 (method git-fetch)
2617 (uri (git-reference
2618 (url "http://git.drobilla.net/ingen.git")
2619 (commit commit)))
2620 (file-name (string-append name "-" version "-checkout"))
2621 (sha256
2622 (base32
2623 "1qmg79962my82c43vyrv5sxbqci9c7gc2s9bwaaqd0fcf08xcz1z"))))
2624 (build-system waf-build-system)
2625 (arguments
2626 `(#:tests? #f ; no "check" target
2627 #:configure-flags (list "--no-webkit")
2628 #:phases
2629 (modify-phases %standard-phases
2630 (add-after 'unpack 'patch-wscript
2631 (lambda* (#:key outputs #:allow-other-keys)
2632 (let ((out (assoc-ref outputs "out")))
2633 (substitute* "wscript"
2634 ;; FIXME: Our version of lv2specgen.py does not behave as
2635 ;; expected. Maybe this requires a development version of
2636 ;; LV2.
2637 (("lv2specgen.py") "touch ingen.lv2/ingen.html; echo")
2638 ;; Add libraries to RUNPATH.
2639 (("^(.+)target.*= 'src/ingen/ingen'," line prefix)
2640 (string-append prefix
2641 "linkflags=[\"-Wl,-rpath="
2642 out "/lib" "\"]," line)))
2643 (substitute* '("src/wscript"
2644 "src/server/wscript")
2645 ;; Add libraries to RUNPATH.
2646 (("bld.env.PTHREAD_LINKFLAGS" line)
2647 (string-append line
2648 " + [\"-Wl,-rpath=" out "/lib" "\"]")))
2649 (substitute* "src/client/wscript"
2650 ;; Add libraries to RUNPATH.
2651 (("^(.+)target.*= 'ingen_client'," line prefix)
2652 (string-append prefix
2653 "linkflags=[\"-Wl,-rpath="
2654 out "/lib" "\"]," line)))
2655 (substitute* "src/gui/wscript"
2656 ;; Add libraries to RUNPATH.
2657 (("^(.+)target.* = 'ingen_gui.*" line prefix)
2658 (string-append prefix
2659 "linkflags=[\"-Wl,-rpath="
2660 out "/lib" "\"]," line))))
2661 #t)))))
2662 (inputs
2663 `(("boost" ,boost)
2664 ("python-rdflib" ,python-rdflib)
2665 ("python" ,python)
2666 ("jack" ,jack-1)
2667 ("lv2" ,lv2)
2668 ("lilv" ,lilv)
2669 ("raul" ,raul-devel)
2670 ("ganv" ,ganv-devel)
2671 ("suil" ,suil)
2672 ("serd" ,serd)
2673 ("sord" ,sord)
2674 ("sratom" ,sratom)
2675 ("gtkmm" ,gtkmm-2)))
2676 (native-inputs
2677 `(("pkg-config" ,pkg-config)
2678 ("python-pygments" ,python-pygments)))
2679 (home-page "http://drobilla.net/software/ingen")
2680 (synopsis "Modular audio processing system")
2681 (description "Ingen is a modular audio processing system for JACK and
2682LV2 based systems. Ingen is built around LV2 technology and a strict
2683separation of engine from user interface. The engine is controlled
2684exclusively through a protocol, and can execute as a headless process, with an
2685in-process GUI, or as an LV2 plugin. The GUI can run as a program which
2686communicates over a Unix or TCP/IP socket, or as an embeddable LV2 GUI which
2687communicates via LV2 ports. Any saved Ingen graph can be loaded as an LV2
2688plugin on any system where Ingen is installed. This allows users to visually
2689develop custom plugins for use in other applications without programming.")
2690 (license license:agpl3+))))
2691
b3410b44
RW
2692(define-public qmidiarp
2693 (package
2694 (name "qmidiarp")
2695 (version "0.6.4")
2696 (source (origin
2697 (method url-fetch)
2698 (uri (string-append "mirror://sourceforge/qmidiarp/qmidiarp/"
2699 version "/qmidiarp-" version ".tar.bz2"))
2700 (sha256
2701 (base32
2702 "1gkfv8ajgf86kbn6j5ilfc1zlz17gdi9yxzywqd6jwff4xlm75hx"))))
2703 (build-system gnu-build-system)
2704 (arguments
2705 `(#:configure-flags
2706 (list "--enable-qt5"
2707 "CXXFLAGS=-std=gnu++11")))
2708 (inputs
2709 `(("qtbase" ,qtbase)
2710 ("alsa-lib" ,alsa-lib)
2711 ("jack" ,jack-1)
2712 ("liblo" ,liblo)
2713 ("lv2" ,lv2)))
2714 (native-inputs
2715 `(("pkg-config" ,pkg-config)
2716 ("qttools" ,qttools)))
2717 (home-page "http://qmidiarp.sourceforge.net/")
2718 (synopsis "MIDI arpeggiator")
2719 (description "QMidiArp is an advanced MIDI arpeggiator, programmable step
2720sequencer and LFO. It can hold any number of arpeggiator, sequencer, or LFO
2721modules running in parallel.")
2722 (license license:gpl2+)))
2723
5a66e25c
RW
2724(define-public seq24
2725 (package
2726 (name "seq24")
2727 (version "0.9.3")
2728 (source (origin
2729 (method url-fetch)
2730 (uri (string-append "https://launchpad.net/seq24/trunk/"
2731 version "/+download/seq24-"
2732 version ".tar.bz2"))
2733 (sha256
2734 (base32
2735 "12dphdhnvfk1k0vmagi1v2lhyxjyj1j3cz6ksjw0ydcvid1x8ap2"))
2736 (patches (search-patches "seq24-rename-mutex.patch"))))
2737 (build-system gnu-build-system)
2738 (arguments
2739 `(#:configure-flags
2740 (list "CXXFLAGS=-std=gnu++11")))
2741 (inputs
2742 `(("gtkmm" ,gtkmm-2)
2743 ("alsa-lib" ,alsa-lib)
2744 ("jack" ,jack-1)
2745 ("lash" ,lash)))
2746 (native-inputs
2747 `(("pkg-config" ,pkg-config)))
2748 (home-page "https://edge.launchpad.net/seq24/")
2749 (synopsis "Real-time MIDI sequencer")
2750 (description "Seq24 is a real-time MIDI sequencer. It was created to
2751provide a very simple interface for editing and playing MIDI loops.")
2752 (license license:gpl2+)))
2753
d3db5efb
LF
2754(define-public python-discogs-client
2755 (package
2756 (name "python-discogs-client")
2757 (version "2.2.1")
2758 (source (origin
2759 (method url-fetch)
2760 (uri (pypi-uri "discogs-client" version))
2761 (sha256
2762 (base32
2763 "053ld2psh0yj3z0kg6z5bn4y3cr562m727494n0ayhgzbkjbacly"))))
2764 (build-system python-build-system)
2765 (propagated-inputs
2766 `(("python-oauthlib" ,python-oauthlib)
2767 ("python-requests" ,python-requests)))
2768 (native-inputs
2769 `(("python-six" ,python-six)))
2770 (home-page "https://github.com/discogs/discogs_client")
2771 (synopsis "Official Python client for the Discogs API")
2772 (description "This is the official Discogs API client for Python. It enables
2773you to query the Discogs database for information on artists, releases, labels,
2774users, Marketplace listings, and more. It also supports OAuth 1.0a
2775authorization, which allows you to change user data such as profile information,
2776collections and wantlists, inventory, and orders.")
80983df3 2777 (license license:bsd-2)))
d3db5efb
LF
2778
2779(define-public python2-discogs-client
80983df3 2780 (package-with-python2 python-discogs-client))
a4f05b46 2781
2782(define-public libsmf
2783 (package
2784 (name "libsmf")
2785 (version "1.3")
2786 (source
2787 (origin
2788 (method url-fetch)
2789 ;; SF download page says development moved, but the link it points to
2790 ;; is gone (https://github.com/nilsgey/libsmf). Someone else adopted
2791 ;; it but made no release so far (https://github.com/stump/libsmf).
2792 (uri (string-append "mirror://sourceforge/libsmf/libsmf/"
2793 version "/libsmf-" version ".tar.gz"))
2794 (sha256
2795 (base32
2796 "16c0n40h0r56gzbh5ypxa4dwp296dan3jminml2qkb4lvqarym6k"))))
2797 (build-system gnu-build-system)
2798 (outputs '("out"
2799 "static")) ; 88KiB of .a files
2800 (arguments
2801 `(#:phases
2802 (modify-phases %standard-phases
2803 (add-after 'install 'move-static-libraries
2804 (lambda* (#:key outputs #:allow-other-keys)
2805 ;; Move static libraries to the "static" output.
2806 (let* ((out (assoc-ref outputs "out"))
2807 (lib (string-append out "/lib"))
2808 (static (assoc-ref outputs "static"))
2809 (slib (string-append static "/lib")))
2810 (mkdir-p slib)
2811 (for-each (lambda (file)
2812 (install-file file slib)
2813 (delete-file file))
2814 (find-files lib "\\.a$"))
2815 #t))))))
2816 (inputs
2817 `(("readline" ,readline)
2818 ("glib" ,glib)))
2819 (native-inputs
2820 `(("doxygen" ,doxygen)
2821 ("pkg-config" ,pkg-config)))
2822 (home-page "http://libsmf.sourceforge.net/")
2823 (synopsis "Standard MIDI File format library")
2824 (description
2825 "LibSMF is a C library for handling SMF (\"*.mid\") files. It transparently handles
2826conversions between time and pulses, tempo map handling and more. The only dependencies
2827are a C compiler and glib. Full API documentation and examples are included.")
2828 (license license:bsd-2)))
a42619e5
RF
2829
2830(define-public lmms
2831 (package
2832 (name "lmms")
2833 (version "1.1.3")
2834 (source
2835 (origin
2836 (method url-fetch)
2837 (uri (string-append "https://github.com/LMMS/lmms/archive/v"
2838 version ".tar.gz"))
2839 (file-name (string-append name "-" version ".tar.gz"))
2840 (sha256
2841 (base32
2842 "1g76z7ha3hd53vbqaq9n1qg6s3lw8zzaw51iny6y2bz0j1xqwcsr"))))
2843 (build-system cmake-build-system)
2844 (arguments
2845 `(#:tests? #f ; no tests
2846 #:phases
2847 (modify-phases %standard-phases
2848 (add-before
2849 'configure 'set-ldflags
2850 (lambda* (#:key outputs #:allow-other-keys)
2851 (setenv "LDFLAGS"
2852 (string-append
2853 "-Wl,-rpath=\""
2854 (assoc-ref outputs "out") "/lib/lmms"
2855 ":"
2856 (assoc-ref outputs "out") "/lib/lmms/ladspa"
2857 "\"")))))))
2858 (native-inputs
2859 `(("pkg-config" ,pkg-config)))
2860 (inputs
2861 `(("sdl" ,sdl)
2862 ("qt" ,qt-4)
2863 ("fltk" ,fltk)
2864 ("libogg" ,libogg)
2865 ("libsamplerate" ,libsamplerate)
2866 ("fluidsynth" ,fluidsynth)
2867 ("libvorbis" ,libvorbis)
2868 ("alsa-lib" ,alsa-lib)
2869 ("portaudio" ,portaudio)
2870 ("ladspa" ,ladspa)
2871 ("libsndfile1" ,libsndfile)
2872 ("libxft" ,libxft)
2873 ("freetype2" ,freetype)
2874 ("fftw3f" ,fftwf)))
2875 (home-page "https://lmms.io/")
2876 (synopsis "Music composition tool")
2877 (description "LMMS is a digital audio workstation. It includes tools for sequencing
2878melodies and beats and for mixing and arranging songs. LMMS includes instruments based on
2879audio samples and various soft sythesizers. It can receive input from a MIDI keyboard.")
2880 (license license:gpl2+)))