From fc6c3eccadb6cccab9a8e2f0e3f6a74f02f56e6f Mon Sep 17 00:00:00 2001 From: Alexandros Theodotou Date: Sat, 21 Mar 2020 18:49:06 +0000 Subject: [PATCH 3/3] gnu: Add zlfo. * gnu/packages/music.scm (zlfo): New variable. --- gnu/packages/music.scm | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm index 468be9937f..aba6dda87e 100644 --- a/gnu/packages/music.scm +++ b/gnu/packages/music.scm @@ -5213,3 +5213,31 @@ featureful and easy to use. It offers unlimited automation options, LV2 plugin support, JACK support and chord assistance.") (home-page "https://www.zrythm.org") (license license:agpl3+))) + +(define-public zlfo + (package + (name "zlfo") + (version "0.1.3") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://git.zrythm.org/git/ZLFO") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "0bm466ci5xyvxvq7l9p6xyh789lvk6i31b4zja1igqh13akbjnjz")))) + (build-system meson-build-system) + (inputs + `(("librsvg" ,librsvg) + ("lv2" ,lv2) + ("ztoolkit-rsvg" ,ztoolkit-rsvg))) + (native-inputs + `(("pkg-config" ,pkg-config))) + (synopsis "Low frequency oscillator plugin") + (description "ZLFO is a fully featured +@dfn{low frequency oscillator} (LFO) for @dfn{control voltage} (CV)-based +automation that comes as an LV2 plugin bundle with a custom UI.") + (home-page "https://git.zrythm.org/cgit/ZLFO/") + (license license:agpl3+))) -- 2.25.1