diff options
author | Zheng Junjie <zhengjunjie@iscas.ac.cn> | 2023-11-11 17:36:10 +0800 |
---|---|---|
committer | Mathieu Othacehe <othacehe@gnu.org> | 2024-01-10 15:25:45 +0100 |
commit | 6401efb55498f9b6354e51586857fe7a3f988c33 (patch) | |
tree | 4deadb87381a9d30a895334ae39c839ceeaaf270 /gnu/packages | |
parent | 537768018ee03a6a9a5562022a16b47ac287d131 (diff) | |
download | guix-6401efb55498f9b6354e51586857fe7a3f988c33.tar.gz guix-6401efb55498f9b6354e51586857fe7a3f988c33.zip |
gnu: yaml-cpp: Update to 0.8.0.
* gnu/packages/serialization.scm (yaml-cpp): Update to 0.8.0.
Change-Id: I927111f2d103dbb30ff336b64dd4ab90c22312a0
Signed-off-by: Mathieu Othacehe <othacehe@gnu.org>
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/serialization.scm | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/gnu/packages/serialization.scm b/gnu/packages/serialization.scm index 3ff3b57cb2..ccafb8e802 100644 --- a/gnu/packages/serialization.scm +++ b/gnu/packages/serialization.scm @@ -16,6 +16,7 @@ ;;; Copyright © 2023 Sharlatan Hellseher <sharlatanus@gmail.com> ;;; Copyright © 2023 Vinicius Monego <monego@posteo.net> ;;; Copyright © 2023 Maxim Cournoyer <maxim.cournoyer@gmail.com> +;;; Copyright © 2023 Zheng Junjie <873216071@qq.com> ;;; ;;; This file is part of GNU Guix. ;;; @@ -512,16 +513,16 @@ character limit for implicit keys.") (define-public yaml-cpp (package (name "yaml-cpp") - (version "0.6.3") + (version "0.8.0") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/jbeder/yaml-cpp") - (commit (string-append "yaml-cpp-" version)))) + (commit version))) (file-name (git-file-name name version)) (sha256 - (base32 "0ykkxzxcwwiv8l8r697gyqh1nl582krpvi7m7l6b40ijnk4pw30s")))) + (base32 "0whdn6pqa56532ml20h89p6rchcrrazdrvi5fz6zpmrkl15yiki7")))) (build-system cmake-build-system) (arguments '(#:configure-flags '("-DYAML_BUILD_SHARED_LIBS=ON"))) |