mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 23:46:13 -05:00
gnu: Add rust-lru-cache-0.1.
* gnu/packages/crates-io.scm (rust-lru-cache-0.1): New variable.
This commit is contained in:
parent
bfe36370cd
commit
a74ece550a
1 changed files with 22 additions and 0 deletions
|
@ -11903,6 +11903,28 @@ (define-public rust-loom-0.1
|
|||
("rust-serde-derive" ,rust-serde-derive-1.0)
|
||||
("rust-serde-json" ,rust-serde-json-1.0))))))
|
||||
|
||||
(define-public rust-lru-cache-0.1
|
||||
(package
|
||||
(name "rust-lru-cache")
|
||||
(version "0.1.2")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "lru-cache" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32 "071viv6g2p3akwqmfb3c8vsycs5n7kr17b70l7la071jv0d4zqii"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:cargo-inputs
|
||||
(("rust-heapsize" ,rust-heapsize-0.4)
|
||||
("rust-linked-hash-map" ,rust-linked-hash-map-0.5))))
|
||||
(home-page "https://github.com/contain-rs/lru-cache")
|
||||
(synopsis "Cache that holds a limited number of key-value pairs")
|
||||
(description "This package provides a cache that holds a limited number of
|
||||
key-value pairs.")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
|
||||
(define-public rust-lscolors-0.6
|
||||
(package
|
||||
(name "rust-lscolors")
|
||||
|
|
Loading…
Reference in a new issue