mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 23:46:13 -05:00
gnu: crates-io: Add rust-pam-sys 0.5.6.
* gnu/packages/crates-io.scm (rust-pam-sys-0.5): New variable Signed-off-by: Lars-Dominik Braun <ldb@leibniz-psychology.org>
This commit is contained in:
parent
7f7a075c3d
commit
7943f9f170
1 changed files with 22 additions and 0 deletions
|
@ -73071,3 +73071,25 @@ (define-public rust-enquote-1
|
|||
(synopsis "Rust library that quotes, unquotes, and unescapes strings")
|
||||
(description "A Rust library quotes, unquotes, and unescapes strings")
|
||||
(license license:unlicense)))
|
||||
|
||||
(define-public rust-pam-sys-0.5
|
||||
(package
|
||||
(name "rust-pam-sys")
|
||||
(version "0.5.6")
|
||||
(home-page "https://github.com/1wilkens/pam-sys")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "pam-sys" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"0d14501d5vybjnzxfjf96321xa5wa36x1xvf02h02zq938qmhj6d"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:cargo-inputs (("rust-libc" ,rust-libc-0.2))))
|
||||
(inputs `(("linux-pam" ,linux-pam)))
|
||||
(synopsis
|
||||
"Rust FFI wrappers for the Linux Pluggable Authentication Modules (PAM)")
|
||||
(description
|
||||
"This crate uses bindgen to generate the raw FFI definitions for PAM. For a rustified API consider using pam.")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
|
|
Loading…
Reference in a new issue