mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: Add rust-tempfile-3.0.
* gnu/packages/rust-cbindgen.scm (rust-tempfile-3.0): New hidden variable.
This commit is contained in:
parent
b62f74a656
commit
a2f821e74b
1 changed files with 21 additions and 0 deletions
|
@ -730,3 +730,24 @@ and Jaro-Winkler.")
|
||||||
(description "Parser for Rust source code")
|
(description "Parser for Rust source code")
|
||||||
(properties '((hidden? . #t)))
|
(properties '((hidden? . #t)))
|
||||||
(license (list license:expat license:asl2.0))))
|
(license (list license:expat license:asl2.0))))
|
||||||
|
|
||||||
|
(define rust-tempfile-3.0
|
||||||
|
(package
|
||||||
|
(name "rust-tempfile")
|
||||||
|
(version "3.0.8")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (crate-uri "tempfile" version))
|
||||||
|
(file-name (string-append name "-" version ".crate"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"1vqk7aq2l04my2r3jiyyxirnf8f90nzcvjasvrajivb85s7p7i3x"))))
|
||||||
|
(build-system cargo-build-system)
|
||||||
|
(home-page "http://stebalien.com/projects/tempfile-rs")
|
||||||
|
(synopsis "Library for managing temporary files and directories")
|
||||||
|
(description
|
||||||
|
"This package provides a library for managing temporary files and
|
||||||
|
directories.")
|
||||||
|
(properties '((hidden? . #t)))
|
||||||
|
(license (list license:expat license:asl2.0))))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue