1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-15 03:20:43 +02:00

gnu: Add rust-oncemutex-0.1.

* gnu/packages/crates-io.scm (rust-oncemutex-0.1): New variable.

Change-Id: Icb14e1de997cdb810650576fdeaff77880f42cda
This commit is contained in:
Efraim Flashner 2025-01-03 10:29:01 +02:00
parent c7fea92217
commit e3b1c82b52
No known key found for this signature in database
GPG key ID: 41AAE7DCCA3D8351

View file

@ -48316,6 +48316,28 @@ be assigned to at most once and provide direct access to the stored
contents.")
(license (list license:expat license:asl2.0))))
(define-public rust-oncemutex-0.1
(package
(name "rust-oncemutex")
(version "0.1.1")
(source
(origin
(method url-fetch)
(uri (crate-uri "oncemutex" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "1qmzibgx46k3xfh0mbljp46cfy9vx62frrx5x1ph18zlcvj1vla4"))))
(build-system cargo-build-system)
(arguments
(list #:tests? #f)) ; `#![feature]` may not be used on the stable release channel
(home-page "https://github.com/reem/rust-once-mutex.git")
(synopsis
"Mutex providing one-time synchronized access, then safe unsynchronized access")
(description
"This package provides a mutex providing one-time synchronized access, then
safe unsynchronized access.")
(license (list license:expat license:asl2.0))))
(define-public rust-onig-6
(package
(name "rust-onig")