guix_mirror_bot pushed a commit to branch next-master
in repository guix.

commit af484418a5b09f463af286f0dd93709c8788143d
Author: Andrew Wong <[email protected]>
AuthorDate: Mon Dec 1 22:52:14 2025 -0500

    gnu: Add projectm-eval.
    
    * gnu/packages/audio.scm (projectm-eval): New variable.
    
    Change-Id: Ib4b4093979f871ccaf35da349abffe8d03913e2f
    Signed-off-by: Gabriel Wicki <[email protected]>
---
 gnu/packages/audio.scm | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)

diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm
index 18b31d3e30..90beb382eb 100644
--- a/gnu/packages/audio.scm
+++ b/gnu/packages/audio.scm
@@ -4328,6 +4328,27 @@ different audio devices such as ALSA or PulseAudio.")
                    (license:non-copyleft
                     "file://src/TPCircularBuffer/README.markdown")))))
 
+(define-public projectm-eval
+  (package
+    (name "projectm-eval")
+    (version "1.0.5")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+              (url "https://github.com/projectM-visualizer/projectm-eval";)
+              (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "04m5k6azji0fk3japzd8v4k04affbfpangfw4fgvk3ac5w75872a"))))
+    (build-system cmake-build-system)
+    (native-inputs (list googletest))
+    (home-page "https://github.com/projectM-visualizer/projectm-eval";)
+    (synopsis "Re-implementation of the NullSoft Expression Evaluation 
Library")
+    (description "This is an open-source re-implementation of the NullSoft
+Expression Evaluation Library 2, as used in the Milkdrop music visualizer.")
+    (license license:expat)))
+
 (define-public qjackctl
   (package
     (name "qjackctl")

Reply via email to