From 9ce850f5b65a6e49352f63c11443bc7090647e85 Mon Sep 17 00:00:00 2001 From: Sughosha Date: Fri, 1 Jul 2022 17:54:41 +0200 Subject: [PATCH 3/4] gnu: Add luppp. * gnu/packages/music.scm (luppp): New variable. --- gnu/packages/music.scm | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm index 1b87675a4a..320a87f2c5 100644 --- a/gnu/packages/music.scm +++ b/gnu/packages/music.scm @@ -5055,6 +5055,36 @@ (define-public patchmatrix OSC connections.") (license license:artistic2.0))) +(define-public luppp + (let ((revision "29") (commit "23da1497f80dbace48b7807afd3570c57a4d5994")) + (package + (name "luppp") + (version (git-version "1.2.1" revision commit)) + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/openAVproductions/openAV-Luppp") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1rjl7fwnqq1gxa3haw1z0p1mld23i194sc43m03h9isagkwxrx9d")))) + (build-system meson-build-system) + (native-inputs (list pkg-config cmake-minimal)) + (inputs (list cairo + ntk + liblo + jack-1 + libsndfile + libsamplerate)) + (home-page "http://openavproductions.com/luppp/") + (synopsis "Live performance tool") + (description + "Luppp is a music creation tool, intended for live use. The focus is on +real time processing and a fast and intuitive workflow. With extensive MIDI +mapping support, you can get looping just how you like!") + (license license:gpl3)))) + (define-public fabla (let ((revision "17") (commit "10acf03046d980f96ed192d5acb9deb812f5c639")) (package -- 2.36.1