[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
09/19: gnu: Add aws-c-sdkutils.
From: |
guix-commits |
Subject: |
09/19: gnu: Add aws-c-sdkutils. |
Date: |
Wed, 20 Apr 2022 18:09:59 -0400 (EDT) |
civodul pushed a commit to branch master
in repository guix.
commit 4bd4c53aace8a64e90c17117cf0cd89d5200c492
Author: Greg Hogan <code@greghogan.com>
AuthorDate: Thu Apr 14 16:42:42 2022 +0000
gnu: Add aws-c-sdkutils.
* gnu/packages/c.scm (aws-c-sdkutils): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
---
gnu/packages/c.scm | 28 ++++++++++++++++++++++++++++
1 file changed, 28 insertions(+)
diff --git a/gnu/packages/c.scm b/gnu/packages/c.scm
index 585624b57e..8f660a316e 100644
--- a/gnu/packages/c.scm
+++ b/gnu/packages/c.scm
@@ -727,6 +727,34 @@ cryptographic primitives for the @acronym{AWS,Amazon Web
Services} SDK.")
(home-page "https://github.com/awslabs/aws-c-cal")
(license license:asl2.0)))
+(define-public aws-c-sdkutils
+ (package
+ (name "aws-c-sdkutils")
+ ; Update only when updating aws-crt-cpp.
+ (version "0.1.2")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url (string-append "https://github.com/awslabs/" name))
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "14wpl3dxwjbbzas44v6m6m3ll89rgz34x9gb140qz624gwzs9v0v"))))
+ (build-system cmake-build-system)
+ (arguments
+ '(#:configure-flags
+ (list "-DBUILD_SHARED_LIBS=ON"
+ (string-append "-DCMAKE_PREFIX_PATH="
+ (assoc-ref %build-inputs "aws-c-common")))))
+ (propagated-inputs
+ (list aws-c-common))
+ (synopsis "Amazon Web Service utility library")
+ (description "This library provides for parsing and management of profiles
+for the @acronym{AWS,Amazon Web Services} SDK.")
+ (home-page "https://github.com/awslabs/aws-c-sdkutils")
+ (license license:asl2.0)))
+
(define-public pcl
(package
(name "pcl")
- branch master updated (8540c2d86c -> dd2ab92d9d), guix-commits, 2022/04/20
- 01/19: git-download: Set locale to deal with Unicode in git metadata., guix-commits, 2022/04/20
- 07/19: gnu: aws-c-io: Update to 0.10.20., guix-commits, 2022/04/20
- 08/19: gnu: aws-c-cal: Update to 0.5.17., guix-commits, 2022/04/20
- 13/19: gnu: aws-c-mqtt: Update to 0.7.10., guix-commits, 2022/04/20
- 04/19: gnu: s2n: Update to 1.3.10., guix-commits, 2022/04/20
- 18/19: home: shepherd: "shepherd.conf" returns one value., guix-commits, 2022/04/20
- 09/19: gnu: Add aws-c-sdkutils.,
guix-commits <=
- 11/19: gnu: aws-c-auth: Update to 0.6.11., guix-commits, 2022/04/20
- 14/19: gnu: aws-crt-cpp: Update to 0.17.27., guix-commits, 2022/04/20
- 05/19: gnu: aws-lc: Update to 1.0.2., guix-commits, 2022/04/20
- 02/19: gnu: cxxopts: Update to 3.0.0., guix-commits, 2022/04/20
- 15/19: gnu: aws-sdk-cpp: Update to 1.9.236., guix-commits, 2022/04/20
- 12/19: gnu: aws-c-s3: Update to 0.1.38., guix-commits, 2022/04/20
- 17/19: gnu: Add emacs-cpreproc., guix-commits, 2022/04/20
- 06/19: gnu: aws-c-common: Update to 0.6.20., guix-commits, 2022/04/20
- 03/19: gnu: folly: Update to 2022.04.11.00., guix-commits, 2022/04/20
- 10/19: gnu: aws-c-http: Update to 0.6.13., guix-commits, 2022/04/20