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>
This commit is contained in:
Zheng Junjie 2023-11-11 17:36:10 +08:00 committed by Mathieu Othacehe
parent 537768018e
commit 6401efb554
No known key found for this signature in database
GPG key ID: 8354763531769CA6

View file

@ -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 @@ (define-public libfyaml
(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")))