[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
branch master updated: gnu: Add luppp.
From: |
guix-commits |
Subject: |
branch master updated: gnu: Add luppp. |
Date: |
Fri, 01 Jul 2022 13:12:46 -0400 |
This is an automated email from the git hooks/post-receive script.
rekado pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new aba1ee5553 gnu: Add luppp.
aba1ee5553 is described below
commit aba1ee5553099d45eb22d9ca1f685502146a49d0
Author: Sughosha <sughosha@proton.me>
AuthorDate: Fri Jul 1 17:54:41 2022 +0200
gnu: Add luppp.
* gnu/packages/music.scm (luppp): New variable.
Signed-off-by: Ricardo Wurmus <rekado@elephly.net>
---
gnu/packages/music.scm | 34 ++++++++++++++++++++++++++++++++++
1 file changed, 34 insertions(+)
diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm
index 912f34043f..cc9bae5612 100644
--- a/gnu/packages/music.scm
+++ b/gnu/packages/music.scm
@@ -5055,6 +5055,40 @@ kit. It provides a patch bay in flow matrix style for
audio, MIDI, CV, and
OSC connections.")
(license license:artistic2.0)))
+(define-public luppp
+ (let ((revision "1")
+ ;; The last release was in 2019. Since then some build fixes have
+ ;; been added.
+ (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)
+ (inputs
+ (list cairo
+ ntk
+ liblo
+ jack-2
+ libsndfile
+ libsamplerate))
+ (native-inputs (list pkg-config cmake-minimal))
+ (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 "1")
;; The last release was in 2016. Since then a number of commits have
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- branch master updated: gnu: Add luppp.,
guix-commits <=