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 6c2c8e566d gnu: Add ghc-portmidi.
6c2c8e566d is described below

commit 6c2c8e566d5d30547e3d695d369b7ce6e2e263ab
Author: Mark Walker <[email protected]>
AuthorDate: Tue Jun 17 12:40:03 2025 +0800

    gnu: Add ghc-portmidi.
    
    * gnu/packages/haskell-xyz.scm (ghc-portmidi): New variable.
    
    Change-Id: Ib88052e7ac9ad6aab3721a4f31a4ceccdae1619c
    Signed-off-by: Sharlatan Hellseher <[email protected]>
---
 gnu/packages/haskell-xyz.scm | 18 ++++++++++++++++++
 1 file changed, 18 insertions(+)

diff --git a/gnu/packages/haskell-xyz.scm b/gnu/packages/haskell-xyz.scm
index fd7519b957..4a613264dc 100644
--- a/gnu/packages/haskell-xyz.scm
+++ b/gnu/packages/haskell-xyz.scm
@@ -9336,6 +9336,24 @@ standard Read class, for better deserialisation of 
Haskell values from
 Strings.")
     (license license:lgpl2.1)))
 
+(define-public ghc-portmidi
+  (package
+    (name "ghc-portmidi")
+    (version "0.2.0.0")
+    (source (origin
+              (method url-fetch)
+              (uri (hackage-uri "PortMidi" version))
+              (sha256
+               (base32
+                "1jb722gwgx1fdyv64nj3by22970l3r04ibc3fa3hnp3k4l2jvk0f"))))
+    (build-system haskell-build-system)
+    (inputs (list alsa-lib))
+    (home-page "https://github.com/PortMidi/PortMidi-haskell";)
+    (synopsis "Haskell bindings for PortMedia/PortMidi")
+    (description "This is a Haskell module for PortMidi audio library,
+which supports real-time MIDI input and output.")
+    (license license:bsd-3)))
+
 (define-public ghc-pqueue
   (package
     (name "ghc-pqueue")

Reply via email to