mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-07 03:44:06 -05:00
gnu: Add rust-botan-sys-0.10.
* gnu/packages/crates-io.scm (rust-botan-sys-0.10): New variable. (rust-botan-sys-0.8): Inherit from rust-botan-sys-0.10.
This commit is contained in:
parent
7989177fa9
commit
f4d6ccb86c
1 changed files with 22 additions and 7 deletions
|
@ -8274,8 +8274,29 @@ (define-public rust-botan-0.8
|
||||||
("rust-cstr-core" ,rust-cstr-core-0.2)
|
("rust-cstr-core" ,rust-cstr-core-0.2)
|
||||||
("rust-cty" ,rust-cty-0.2))))))
|
("rust-cty" ,rust-cty-0.2))))))
|
||||||
|
|
||||||
|
(define-public rust-botan-sys-0.10
|
||||||
|
(package
|
||||||
|
(name "rust-botan-sys")
|
||||||
|
(version "0.10.3")
|
||||||
|
(source (origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (crate-uri "botan-sys" version))
|
||||||
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"1cbjr44gc5dhmgl43sfiqzbsma4anfi3h26m4yzsli23yd1lmyf8"))))
|
||||||
|
(build-system cargo-build-system)
|
||||||
|
(arguments
|
||||||
|
`(#:cargo-inputs (("rust-botan-src" ,rust-botan-src-0.21903))))
|
||||||
|
(inputs (list botan))
|
||||||
|
(home-page "https://botan.randombit.net/")
|
||||||
|
(synopsis "FFI wrapper for Botan cryptography library")
|
||||||
|
(description "FFI wrapper for Botan cryptography library")
|
||||||
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public rust-botan-sys-0.8
|
(define-public rust-botan-sys-0.8
|
||||||
(package
|
(package
|
||||||
|
(inherit rust-botan-sys-0.10)
|
||||||
(name "rust-botan-sys")
|
(name "rust-botan-sys")
|
||||||
(version "0.8.1")
|
(version "0.8.1")
|
||||||
(source (origin
|
(source (origin
|
||||||
|
@ -8284,16 +8305,10 @@ (define-public rust-botan-sys-0.8
|
||||||
(file-name (string-append name "-" version ".tar.gz"))
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "1m11zblxfanrhl97j7z3ap7n17rr8j0rg91sr7f9j6y2bsniaz1x"))))
|
(base32 "1m11zblxfanrhl97j7z3ap7n17rr8j0rg91sr7f9j6y2bsniaz1x"))))
|
||||||
(build-system cargo-build-system)
|
|
||||||
(arguments
|
(arguments
|
||||||
`(#:cargo-inputs
|
`(#:cargo-inputs
|
||||||
(("rust-botan-src" ,rust-botan-src-0.21703)
|
(("rust-botan-src" ,rust-botan-src-0.21703)
|
||||||
("rust-cty" ,rust-cty-0.2))))
|
("rust-cty" ,rust-cty-0.2))))))
|
||||||
(inputs (list botan))
|
|
||||||
(home-page "https://botan.randombit.net/")
|
|
||||||
(synopsis "FFI wrapper for Botan cryptography library")
|
|
||||||
(description "FFI wrapper for Botan cryptography library")
|
|
||||||
(license license:expat)))
|
|
||||||
|
|
||||||
(define-public rust-botan-src-0.21903
|
(define-public rust-botan-src-0.21903
|
||||||
(package
|
(package
|
||||||
|
|
Loading…
Reference in a new issue