me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-uzers-0.11.

* gnu/packages/crates-io.scm (rust-uzers-0.11): New variable.

Signed-off-by: Jaeme Sifat <jaeme@runbox.com>
Change-Id: Ibf8373118929806667aade07f44bcc838f8e7e5c
Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
Jaeme Sifat 2023-10-29 00:26:53 -04:00 committed by Efraim Flashner
parent b6de76b466
commit a58ecbeb70
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 23 additions and 0 deletions

View File

@ -84103,6 +84103,29 @@ first byte.")
;; The user can choose either license.
(license (list license:asl2.0 license:expat))))
(define-public rust-uzers-0.11
(package
(name "rust-uzers")
(version "0.11.3")
(source
(origin
(method url-fetch)
(uri (crate-uri "uzers" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "0qrzbhncbv4s52lgyzs2pxn1b6gmx9k7h1rdwdwix44cgvf87lkn"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-inputs (("rust-libc" ,rust-libc-0.2)
("rust-log" ,rust-log-0.4))
#:cargo-development-inputs (("rust-env-logger" ,rust-env-logger-0.7))))
(home-page "https://github.com/rustadopt/uzers-rs")
(synopsis "Library for getting information on Unix users and groups")
(description
"This package provides a library for getting information on Unix users
and groups. A more maintained fork of the @code{rust-users} crate.")
(license license:expat)))
(define-public rust-v-frame-0.3
(package
(name "rust-v-frame")