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