me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-alto-3.

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

Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
Change-Id: Ia351a2323cabc8847a9caeaf49679980b2335bab
Steve George 2023-10-23 23:20:52 +01:00 committed by Efraim Flashner
parent 0e274a23b2
commit 674bc36794
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 25 additions and 0 deletions

View File

@ -3092,6 +3092,31 @@ be used with the stdlib.")
(description "Mirror of Rust's allocator API.")
(license (list license:expat license:asl2.0))))
(define-public rust-alto-3
(package
(name "rust-alto")
(version "3.0.4")
(source (origin
(method url-fetch)
(uri (crate-uri "alto" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
"1rgsdmh346s3rwhzqacjc6nz7jap4dd72c1gfmkaq9sgzh9fhnyp"))))
(build-system cargo-build-system)
(arguments
(list #:tests? #f ; Not all files included.
#:cargo-inputs
`(("rust-al-sys" ,rust-al-sys-0.6)
("rust-lazy-static" ,rust-lazy-static-0.2)
("rust-parking-lot" ,rust-parking-lot-0.4))))
(home-page "https://github.com/jpernst/alto")
(synopsis
"Idiomatic Rust bindings for OpenAL 1.1 and extensions (including EFX)")
(description
"Rust bindings for OpenAL 1.1 and extensions (including EFX).")
(license (list license:expat license:asl2.0))))
(define-public rust-always-assert-0.1
(package
(name "rust-always-assert")