diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2021-01-08 16:02:54 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2021-01-08 16:03:15 +0100 |
commit | bc8ea17b330deb65ab8031927833ca2f7a4e05f8 (patch) | |
tree | 34ee947a01d8354ca7e22a3fe93308cfe3250d1d /gnu/packages/music.scm | |
parent | 55f71f0ef753971b44cd057008ba95f74950e9c6 (diff) | |
download | guix-bc8ea17b330deb65ab8031927833ca2f7a4e05f8.tar.gz |
gnu: Add liquidsfz.
* gnu/packages/music.scm (liquidsfz): New variable.
Diffstat (limited to 'gnu/packages/music.scm')
-rw-r--r-- | gnu/packages/music.scm | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm index e787d7ba36..fc6c29855d 100644 --- a/gnu/packages/music.scm +++ b/gnu/packages/music.scm @@ -4401,6 +4401,36 @@ melodies and beats and for mixing and arranging songs. LMMS includes instrument audio samples and various soft sythesizers. It can receive input from a MIDI keyboard.") (license license:gpl2+))) +(define-public liquidsfz + (package + (name "liquidsfz") + (version "0.2.2") + (source (origin + (method url-fetch) + (uri (string-append "https://space.twc.de/~stefan/liquidsfz/" + "liquidsfz-" version ".tar.bz2")) + (sha256 + (base32 + "011m839vjb8gmiv1vzc0d7xz2q2jiwk4v0j9paqyx3lm61czvy93")))) + (build-system gnu-build-system) + (arguments + `(#:configure-flags '("--enable-shared"))) + (native-inputs + `(("pkg-config" ,pkg-config) + ;; Fails with default gcc (#include <filesystem> not found). + ("gcc" ,gcc-9))) + (inputs + `(("jack" ,jack-2) + ("lv2" ,lv2) + ("readline" ,readline) + ("libsndfile" ,libsndfile))) + (home-page "https://github.com/swesterfeld/liquidsfz") + (synopsis "Sampler library") + (description "The main goal of liquidsfz is to provide an SFZ sampler +implementation library that is easy to integrate into other projects. A +standalone JACK client and an LV2 plugin is also available.") + (license license:lgpl2.1+))) + (define-public musescore (package (name "musescore") |