From 0ba05eed84867e0e7bd17fbbf8916c53f6cf7abd Mon Sep 17 00:00:00 2001 From: Alexandros Theodotou Date: Tue, 25 Feb 2020 15:03:08 +0000 Subject: [PATCH 2/2] gnu: Add zlfo. * gnu/packages/music.scm (zlfo): New variable. --- gnu/packages/music.scm | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm index 16e69840df..8d07a23127 100644 --- a/gnu/packages/music.scm +++ b/gnu/packages/music.scm @@ -5189,3 +5189,30 @@ 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 + `(("ztoolkit-rsvg" ,ztoolkit-rsvg))) + (native-inputs + `(("git" ,git) + ("lv2" ,lv2) + ("pkg-config" ,pkg-config))) + (synopsis "LFO plugin") + (description "ZLFO is a fully featured LFO for CV-based automation +that comes as a cross-platform LV2 plugin bundle with a custom UI.") + (home-page "https://git.zrythm.org/cgit/ZLFO/") + (license license:agpl3+))) -- 2.25.1