me
/
guix
Archived
1
0
Fork 0

gnu: aws-crt-cpp: Update to 0.17.27.

* gnu/packages/cpp.scm (aws-crt-cpp): Update to 0.17.27.

Signed-off-by: Ludovic Courtès <ludo@gnu.org>
master
Greg Hogan 2022-04-14 16:46:32 +00:00 committed by Ludovic Courtès
parent fe75dc2552
commit c542d084c0
No known key found for this signature in database
GPG Key ID: 090B11993D9AEBB5
1 changed files with 34 additions and 36 deletions

View File

@ -1162,45 +1162,43 @@ to be useful for building network-based applications.")
(license license:boost1.0))) (license license:boost1.0)))
(define-public aws-crt-cpp (define-public aws-crt-cpp
(let* ((commit "b6d311d76b504bf8ace5134d3fca0e672c36c9c3") (package
(revision "1")) (name "aws-crt-cpp")
(package ; Update only when updating aws-sdk-cpp, and when updating also update
(name "aws-crt-cpp") ; versions of library dependencies linked from from
; Update only when updating aws-sdk-cpp, and when updating also update ; https://github.com/awslabs/aws-crt-cpp/tree/{aws-crt-cpp commit}/crt
; versions of library dependencies linked from from (version "0.17.27")
; https://github.com/awslabs/aws-crt-cpp/tree/{aws-crt-cpp commit}/crt (source (origin
(version (git-version "0.17.1" revision commit)) (method git-fetch)
(source (origin (uri (git-reference
(method git-fetch) (url "https://github.com/awslabs/aws-crt-cpp")
(uri (git-reference (commit (string-append "v" version))))
(url "https://github.com/awslabs/aws-crt-cpp") (file-name (git-file-name name version))
(commit commit))) (sha256
(file-name (git-file-name name version)) (base32
(sha256 "14g8pn7yii1klby7phcw08qnld1qv11vwmbdz8cs3mlpqahxrh4i"))))
(base32 (build-system cmake-build-system)
"1n0nlbz91j3ycwwrh9652f0h5qr2sj5b1l0i5sg40ajzs7wvzd32")))) (arguments
(build-system cmake-build-system) '(#:configure-flags
(arguments (list "-DBUILD_DEPS=OFF"
'(#:configure-flags "-DBUILD_SHARED_LIBS=ON"
(list "-DBUILD_DEPS=OFF" (string-append "-DCMAKE_PREFIX_PATH="
"-DBUILD_SHARED_LIBS=ON" (assoc-ref %build-inputs "aws-c-common"))
(string-append "-DCMAKE_PREFIX_PATH=" "-DENABLE_NET_TESTS=OFF")))
(assoc-ref %build-inputs "aws-c-common")) (propagated-inputs
"-DENABLE_NET_TESTS=OFF"))) (list aws-c-auth
(propagated-inputs aws-c-cal
(list aws-c-auth aws-c-event-stream
aws-c-cal aws-c-http
aws-c-event-stream aws-c-mqtt
aws-c-http aws-c-s3))
aws-c-mqtt (synopsis "C++ wrapper for Amazon Web Services C libraries")
aws-c-s3)) (description "The AWS Common Runtime (CRT) library provides a C++ wrapper
(synopsis "C++ wrapper for Amazon Web Services C libraries")
(description "The AWS Common Runtime (CRT) library provides a C++ wrapper
implementation for the following @acronym{AWS,Amazon Web Services} C libraries: implementation for the following @acronym{AWS,Amazon Web Services} C libraries:
aws-c-auth, aws-c-cal, aws-c-common, aws-c-compression, aws-c-event-stream, aws-c-auth, aws-c-cal, aws-c-common, aws-c-compression, aws-c-event-stream,
aws-c-http, aws-c-io, aws-c-mqtt, aws-checksums, and s2n.") aws-c-http, aws-c-io, aws-c-mqtt, aws-checksums, and s2n.")
(home-page "https://github.com/awslabs/aws-crt-cpp") (home-page "https://github.com/awslabs/aws-crt-cpp")
(license license:asl2.0)))) (license license:asl2.0)))
(define-public aws-sdk-cpp (define-public aws-sdk-cpp
(package (package