This is an automated email from the git hooks/post-receive script.

guix_mirror_bot pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 1cbf34833b gnu: Add clap-1.0.
1cbf34833b is described below

commit 1cbf34833b403e56dabee4c56c365fb5b80277bc
Author: Daniel Martins <[email protected]>
AuthorDate: Thu Jul 16 14:17:18 2026 -0300

    gnu: Add clap-1.0.
    
    * gnu/packages/audio.scm (clap-1.0): New variable.
    
    Change-Id: Ifc62144f4da8e28d1c74b7efdd91a8c740889727
    Merges: !9992
    Signed-off-by: Sughosha <[email protected]>
---
 gnu/packages/audio.scm | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)

diff --git a/gnu/packages/audio.scm b/gnu/packages/audio.scm
index 88ebef6a90..3a6b99cd8a 100644
--- a/gnu/packages/audio.scm
+++ b/gnu/packages/audio.scm
@@ -3583,6 +3583,31 @@ together.")
                (base32
                 "0skn3cvh7zs173v3i6ywdmddqzrhxvivwdisvmqc6hvq594f8z80"))))))
 
+(define-public clap-1.0
+  (package/inherit clap
+    (version "1.0.3")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/free-audio/clap";)
+                    (commit version)))
+              (file-name (git-file-name "clap" version))
+              (sha256
+               (base32
+                "0ck07ihbmjlqfys5k942fn97f7z4sq1ikxdzcm5fs8nr9j0f1mfn"))))
+    (arguments
+     (substitute-keyword-arguments arguments
+       ((#:phases phases
+         #~%standard-phases)
+        #~(modify-phases #$phases
+            (add-after 'unpack 'include-headers-in-install
+              (lambda _
+                ;; The 1.0.x install rule is excluded from the default install
+                ;; target.
+                (substitute* "CMakeLists.txt"
+                  ((" OPTIONAL EXCLUDE_FROM_ALL")
+                   ""))))))))))
+
 (define-public ladspa
   (package
     (name "ladspa")

Reply via email to