guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

07/12: gnu: Add redkite.


From: guix-commits
Subject: 07/12: gnu: Add redkite.
Date: Wed, 13 Nov 2019 18:18:57 -0500 (EST)

mbakke pushed a commit to branch master
in repository guix.

commit 74f9a8fbbeb176f71dedce088910c0495e7848eb
Author: Alexandros Theodotou <address@hidden>
Date:   Fri Nov 8 09:47:25 2019 +0000

    gnu: Add redkite.
    
    * gnu/packages/audio.scm: (redkite): New variable.
    
    Signed-off-by: Marius Bakke <address@hidden>
---
 gnu/packages/audio.scm | 28 ++++++++++++++++++++++++++++
 1 file changed, 28 insertions(+)

diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm
index 93e004f..291b554 100644
--- a/gnu/packages/audio.scm
+++ b/gnu/packages/audio.scm
@@ -3792,3 +3792,31 @@ stream to one or more IceCast and/or ShoutCast servers.")
 @dfn{Linear/Longitudinal Time Code} (LTC) data.")
     (home-page "https://x42.github.io/libltc/";)
     (license license:lgpl3+)))
+
+(define-public redkite
+  (package
+    (name "redkite")
+    (version "0.6.2")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "https://gitlab.com/geontime/redkite/-/archive/v";
+                           version "/redkite-v" version ".tar.gz"))
+       (sha256
+        (base32
+         "0qif1x3s96zi81zkg11zkszf2i5mvfyrg9b3z2lr0jpzihgblk7y"))))
+    (build-system cmake-build-system)
+    (arguments
+     `(#:tests? #f))                    ;no tests included
+    (inputs
+     `(("cairo" ,cairo)))
+    (native-inputs
+     `(("pkg-config", pkg-config)))
+    (synopsis "Small GUI toolkit")
+    (description "Redkite is a small GUI toolkit developed in C++17 and
+inspired from other well known GUI toolkits such as Qt and GTK.  It is
+minimal on purpose and is intended to be statically linked to applications,
+therefore satisfying any requirements they may have to be self contained,
+as is the case with audio plugins.")
+    (home-page "https://gitlab.com/geontime/redkite";)
+    (license license:gpl3+)))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]