From f8fd8c894b62080da31982431550946296e61407 Mon Sep 17 00:00:00 2001 From: Sughosha Date: Wed, 22 Jun 2022 14:32:28 +0200 Subject: [PATCH 4/4] gnu: Add fabla * gnu/packages/music.scm: add fabla --- gnu/packages/music.scm | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm index a3710adf3a..9f992706b7 100644 --- a/gnu/packages/music.scm +++ b/gnu/packages/music.scm @@ -5081,6 +5081,30 @@ (define-public luppp "Luppp is a music creation tool, intended for live use. The focus is on real time processing and a fast and intuitive workflow with MIDI mapping support.") (license license:gpl3)))) +(define-public fabla + (let ((revision "18") (commit "10acf03046d980f96ed192d5acb9deb812f5c639")) + (package + (name "fabla") + (version (git-version "1.2.1" revision commit)) + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/openAVproductions/openAV-Fabla") + (commit commit))) + (sha256 + (base32 + "0ybbzb86j1n5dfhzc6aa3cibkwi6q3x0c18b1w3anyibanmr1wmc")))) + (build-system cmake-build-system) + (arguments + `(#:tests? #f)) + (native-inputs `(("pkg-config" ,pkg-config) ("lv2" ,lv2) + ("mesa" ,mesa))) + (inputs (list ntk cairomm libsndfile)) + (home-page "http://openavproductions.com/fabla") + (synopsis "Drum sampler LV2 plugin") + (description "Fabla is a drum sampler LV2 plugin.") + (license license:gpl3)))) + (define-public sorcer (let ((revision "6") (commit "cc7f6f58af3188a8620b90fdad6e8ca5d026f543")) (package -- 2.36.1