me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-hound-3.

* gnu/packages/crates-io.scm (rust-hound-3): New variable.

Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
Change-Id: Ifb52b8160d348e678db9620eda28726136e73f4a
Steve George 2023-10-23 23:21:06 +01:00 committed by Efraim Flashner
parent 5a4642d08e
commit 4d68caa26c
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 19 additions and 0 deletions

View File

@ -31812,6 +31812,25 @@ Hash-based Message Authentication Code algorithm} for SHA1.")
(("rust-libc" ,rust-libc-0.2)
("rust-winutil" ,rust-winutil-0.1))))))
(define-public rust-hound-3
(package
(name "rust-hound")
(version "3.5.1")
(source (origin
(method url-fetch)
(uri (crate-uri "hound" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
"0kw5yybfc7hdwxwm6d3m3h4ms52fkw0n0zch35drb52ci2xsmbb2"))))
(build-system cargo-build-system)
(arguments
(list #:skip-build? #t)) ; Cut the dependency graph.
(home-page "https://github.com/ruuda/hound")
(synopsis "Wav encoding and decoding library")
(description "This package provides a wav encoding and decoding library.")
(license license:asl2.0)))
(define-public rust-html5ever-0.26
(package
(name "rust-html5ever")