me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-cap-0.1.

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

Change-Id: Ie8ec11859a4448fa130088a9c724da5ebe86f944
master
Efraim Flashner 2023-12-25 09:16:38 +02:00
parent 467f670d21
commit a1b99c3c0f
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 21 additions and 0 deletions

View File

@ -11391,6 +11391,27 @@ spreadsheet file.")
canonical filesystem paths.")
(license license:asl2.0)))
(define-public rust-cap-0.1
(package
(name "rust-cap")
(version "0.1.2")
(source
(origin
(method url-fetch)
(uri (crate-uri "cap" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "00q00chl1y8j6p9f9rndnd9jyqyqklnd5l9fn0v4r8l4bfw5w4kg"))))
(build-system cargo-build-system)
(arguments
(list #:tests? #f)) ; memory allocation of 48 bytes failed
(home-page "https://github.com/alecmocatta/cap")
(synopsis "Allocator that can track and limit memory usage")
(description
"This crate provides a generic allocator that wraps another allocator,
tracking memory usage and enabling limits to be set.")
(license (list license:expat license:asl2.0))))
(define-public rust-capnp-0.14
(package
(name "rust-capnp")