mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: aws-c-common: Update to 0.5.2.
* gnu/packages/c.scm (aws-c-common): Update to 0.5.2. [arguments]: Build as shared library. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
bb5d84a048
commit
9d541e97e9
1 changed files with 6 additions and 3 deletions
|
@ -10,7 +10,7 @@
|
||||||
;;; Copyright © 2020 Marius Bakke <marius@gnu.org>
|
;;; Copyright © 2020 Marius Bakke <marius@gnu.org>
|
||||||
;;; Copyright © 2020 Katherine Cox-Buday <cox.katherine.e@gmail.com>
|
;;; Copyright © 2020 Katherine Cox-Buday <cox.katherine.e@gmail.com>
|
||||||
;;; Copyright © 2020 Maxim Cournoyer <maxim.cournoyer@gmail.com>
|
;;; Copyright © 2020 Maxim Cournoyer <maxim.cournoyer@gmail.com>
|
||||||
;;; Copyright © 2020 Greg Hogan <code@greghogan.com>
|
;;; Copyright © 2020, 2021 Greg Hogan <code@greghogan.com>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -545,7 +545,7 @@ (define-public unifdef
|
||||||
(define-public aws-c-common
|
(define-public aws-c-common
|
||||||
(package
|
(package
|
||||||
(name "aws-c-common")
|
(name "aws-c-common")
|
||||||
(version "0.4.63")
|
(version "0.5.2")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
(uri (git-reference
|
(uri (git-reference
|
||||||
|
@ -554,8 +554,11 @@ (define-public aws-c-common
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"16bc6fn1gq3nqcrzgpi2kjphq7xkkr73aljakrg89ysm6hyzyim9"))))
|
"0rd2qzaa9mmn5f6f2bl1wgv54f17pqx3vwyy9f8ylh59qfnilpmg"))))
|
||||||
(build-system cmake-build-system)
|
(build-system cmake-build-system)
|
||||||
|
(arguments
|
||||||
|
'(#:configure-flags
|
||||||
|
'("-DBUILD_SHARED_LIBS=ON")))
|
||||||
(synopsis "Amazon Web Services core C library")
|
(synopsis "Amazon Web Services core C library")
|
||||||
(description
|
(description
|
||||||
"This library provides common C99 primitives, configuration, data
|
"This library provides common C99 primitives, configuration, data
|
||||||
|
|
Loading…
Reference in a new issue