guix-commits
[Top][All Lists]
Advanced

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

02/05: gnu: Add obs-spectralizer.


From: guix-commits
Subject: 02/05: gnu: Add obs-spectralizer.
Date: Tue, 2 Feb 2021 05:06:24 -0500 (EST)

civodul pushed a commit to branch master
in repository guix.

commit deadd9789759a66426707f52a9308e671c717d13
Author: Andrew Tropin <andrew@trop.in>
AuthorDate: Mon Jan 18 19:39:44 2021 +0300

    gnu: Add obs-spectralizer.
    
    * gnu/packages/video.scm (obs-spectralizer): New variable.
    
    Co-authored-by: Ludovic Courtès <ludo@gnu.org>
---
 gnu/packages/video.scm | 27 +++++++++++++++++++++++++++
 1 file changed, 27 insertions(+)

diff --git a/gnu/packages/video.scm b/gnu/packages/video.scm
index ef80cb4..19ecd60 100644
--- a/gnu/packages/video.scm
+++ b/gnu/packages/video.scm
@@ -3141,6 +3141,33 @@ and JACK.")
     (home-page "https://obsproject.com";)
     (license license:gpl2+)))
 
+(define-public obs-spectralizer
+  (package
+    (name "obs-spectralizer")
+    (version "1.3.3")
+    (source
+      (origin
+        (method git-fetch)
+        (uri (git-reference
+              (url "https://github.com/univrsal/spectralizer";)
+              (commit (string-append "v" version))))
+        (file-name (git-file-name name version))
+        (sha256
+         (base32
+          "0q75cnyqydpvfda51zm9gxqj3wqr99ad0lxzjhw0ld67qvj1ag6i"))))
+    (build-system cmake-build-system)
+    (arguments
+     `(#:tests? #f
+       #:configure-flags
+       (list "-DGLOBAL_INSTALLATION=ON" "-DUSE_CMAKE_LIBDIR=ON")))
+    (inputs `(("obs" ,obs)
+              ("fftw" ,fftw)))
+    (home-page "https://github.com/univrsal/spectralizer";)
+    (synopsis "OBS plugin for audio visualization")
+    (description "This OBS plugins allows you to vizualize MPD and internal
+OBS audio sources.")
+    (license license:gpl2)))
+
 (define-public libvdpau
   (package
     (name "libvdpau")



reply via email to

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