gnu: Add rust-fd-lock-2.
* gnu/packages/crates-io.scm (rust-fd-lock-2): New variable.
This commit is contained in:
parent
3bbec7052f
commit
5eb5fe9aeb
1 changed files with 24 additions and 0 deletions
|
@ -15201,6 +15201,30 @@ (define-public rust-fastrand-1
|
|||
"This package provides a simple and fast random number generator.")
|
||||
(license (list license:asl2.0 license:expat))))
|
||||
|
||||
(define-public rust-fd-lock-2
|
||||
(package
|
||||
(name "rust-fd-lock")
|
||||
(version "2.0.0")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "fd-lock" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32 "01kzrikg3a60lxmr0k8bbm4nggh6693f1pf530ip136qzwpg0400"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:skip-build? #t
|
||||
#:cargo-inputs
|
||||
(("rust-libc" ,rust-libc-0.2)
|
||||
("rust-winapi" ,rust-winapi-0.3))))
|
||||
(home-page "https://github.com/yoshuawuyts/fd-lock")
|
||||
(synopsis "Advisory lock on a file")
|
||||
(description
|
||||
"Fd-lock provides an advisory lock on a file using a file descriptor to
|
||||
it.")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
|
||||
(define-public rust-femme-2
|
||||
(package
|
||||
(name "rust-femme")
|
||||
|
|
Loading…
Reference in a new issue