Put in earplugs

This commit is contained in:
nik gaffney 2024-03-08 12:13:47 +01:00
parent 2810d0a7eb
commit 3fd22e973e
Signed by: nik
GPG key ID: 989F5E6EDB478160

View file

@ -28,24 +28,24 @@
(let ((commit "f647738ccc22925ed740a8ca9132fda76a05baeb") (let ((commit "f647738ccc22925ed740a8ca9132fda76a05baeb")
(revision "0")) (revision "0"))
(package (package
(name "sbcl-osc") (name "sbcl-osc")
(version (git-version "0.9" revision commit)) (version (git-version "0.9" revision commit))
(source (source
(origin (origin
(method git-fetch) (method git-fetch)
(uri (git-reference (uri (git-reference
(url "https://github.com/zzkt/osc") (url "https://github.com/zzkt/osc")
(commit commit))) (commit commit)))
(file-name (git-file-name "osc" version)) (file-name (git-file-name "cl-osc" version))
(sha256 (sha256
(base32 "1x4cavspaxcr604g0hwak1ncy4m9cqq03ji4v56g2h1443n7h48a")))) (base32 "1x4cavspaxcr604g0hwak1ncy4m9cqq03ji4v56g2h1443n7h48a"))))
(build-system asdf-build-system/sbcl) (build-system asdf-build-system/sbcl)
(inputs (list sbcl-ieee-floats)) (native-inputs (list sbcl-fiveam))
(synopsis "Implementation of the Open Sound Control protocol") (inputs (list sbcl-ieee-floats))
(description (synopsis "Implementation of the Open Sound Control protocol")
"This is a lisp implementation of the Open Sound Control protocol (or more accurately “data transport specification” or “encoding”). The code should be close to ANSI standard common lisp and provides self contained code for encoding and decoding of OSC data, messages, and bundles.") (description "This is a lisp implementation of the Open Sound Control protocol (or more accurately “data transport specification” or “encoding”). The code should be close to ANSI standard common lisp and provides self contained code for encoding and decoding of OSC data, messages, and bundles.")
(home-page "https://github.com/zzkt/osc/") (home-page "https://github.com/zzkt/osc/")
(license (list license:gpl3+))))) (license license:gpl3+))))
(define-public cl-osc (define-public cl-osc
(sbcl-package->cl-source-package sbcl-osc)) (sbcl-package->cl-source-package sbcl-osc))