mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-18 21:46:35 +01:00
gnu: Add rust-thrussh-keys-0.22.
* gnu/packages/crates-io.scm (rust-thrussh-keys-0.22): New variable. Change-Id: I4b53668acb1aadab112a7649aeaac50912dd99cd
This commit is contained in:
parent
53bd76d040
commit
21231cd894
1 changed files with 52 additions and 0 deletions
|
@ -80537,6 +80537,58 @@ (define-public rust-thrussh-config-0.5
|
|||
("rust-tokio" ,rust-tokio-1)
|
||||
("rust-whoami" ,rust-whoami-1))))))
|
||||
|
||||
(define-public rust-thrussh-keys-0.22
|
||||
(package
|
||||
(name "rust-thrussh-keys")
|
||||
(version "0.22.1")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "thrussh-keys" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32 "1fsr8ank8vciyfdr27b56gnwasjrvadxkklv6w7dn22c7sqmjgf4"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:cargo-test-flags '("--"
|
||||
"--skip=test::test_client_agent_ed25519")
|
||||
#:cargo-inputs (("rust-aes" ,rust-aes-0.7)
|
||||
("rust-bcrypt-pbkdf" ,rust-bcrypt-pbkdf-0.10)
|
||||
("rust-bit-vec" ,rust-bit-vec-0.6)
|
||||
("rust-block-modes" ,rust-block-modes-0.8)
|
||||
("rust-byteorder" ,rust-byteorder-1)
|
||||
("rust-cryptovec" ,rust-cryptovec-0.6)
|
||||
("rust-data-encoding" ,rust-data-encoding-2)
|
||||
("rust-dirs" ,rust-dirs-3)
|
||||
("rust-futures" ,rust-futures-0.3)
|
||||
("rust-hmac" ,rust-hmac-0.11)
|
||||
("rust-log" ,rust-log-0.4)
|
||||
("rust-md5" ,rust-md5-0.7)
|
||||
("rust-num-bigint" ,rust-num-bigint-0.4)
|
||||
("rust-num-integer" ,rust-num-integer-0.1)
|
||||
("rust-openssl" ,rust-openssl-0.10)
|
||||
("rust-p256" ,rust-p256-0.13)
|
||||
("rust-pbkdf2" ,rust-pbkdf2-0.8)
|
||||
("rust-rand" ,rust-rand-0.8)
|
||||
("rust-serde" ,rust-serde-1)
|
||||
("rust-serde-derive" ,rust-serde-derive-1)
|
||||
("rust-sha2" ,rust-sha2-0.9)
|
||||
("rust-thiserror" ,rust-thiserror-1)
|
||||
("rust-thrussh-libsodium" ,rust-thrussh-libsodium-0.2)
|
||||
("rust-tokio" ,rust-tokio-1)
|
||||
("rust-tokio-stream" ,rust-tokio-stream-0.1)
|
||||
("rust-yasna" ,rust-yasna-0.4))
|
||||
#:cargo-development-inputs (("rust-env-logger" ,rust-env-logger-0.8)
|
||||
("rust-tempdir" ,rust-tempdir-0.3))))
|
||||
(native-inputs (list pkg-config))
|
||||
(inputs (list libsodium))
|
||||
(home-page "https://pijul.org/thrussh")
|
||||
(synopsis "Deal with SSH keys from Rust")
|
||||
(description
|
||||
"This package helps deal with SSH keys: loading them, decrypting them,
|
||||
calling an SSH agent.")
|
||||
(license license:asl2.0)))
|
||||
|
||||
(define-public rust-thrussh-libsodium-0.3
|
||||
(package
|
||||
(name "rust-thrussh-libsodium")
|
||||
|
|
Loading…
Reference in a new issue