me
/
guix
Archived
1
0
Fork 0

gnu: Add obs-spectralizer.

* gnu/packages/video.scm (obs-spectralizer): New variable.

Co-authored-by: Ludovic Courtès <ludo@gnu.org>
master
Andrew Tropin 2021-01-18 19:39:44 +03:00 committed by Ludovic Courtès
parent 5be01dcdc1
commit deadd97897
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5
1 changed files with 27 additions and 0 deletions

View File

@ -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")