mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-28 14:01:29 -05:00
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:
parent
537768018e
commit
6401efb554
1 changed files with 4 additions and 3 deletions
|
@ -16,6 +16,7 @@
|
||||||
;;; Copyright © 2023 Sharlatan Hellseher <sharlatanus@gmail.com>
|
;;; Copyright © 2023 Sharlatan Hellseher <sharlatanus@gmail.com>
|
||||||
;;; Copyright © 2023 Vinicius Monego <monego@posteo.net>
|
;;; Copyright © 2023 Vinicius Monego <monego@posteo.net>
|
||||||
;;; Copyright © 2023 Maxim Cournoyer <maxim.cournoyer@gmail.com>
|
;;; Copyright © 2023 Maxim Cournoyer <maxim.cournoyer@gmail.com>
|
||||||
|
;;; Copyright © 2023 Zheng Junjie <873216071@qq.com>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -512,16 +513,16 @@ (define-public libfyaml
|
||||||
(define-public yaml-cpp
|
(define-public yaml-cpp
|
||||||
(package
|
(package
|
||||||
(name "yaml-cpp")
|
(name "yaml-cpp")
|
||||||
(version "0.6.3")
|
(version "0.8.0")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
(uri (git-reference
|
(uri (git-reference
|
||||||
(url "https://github.com/jbeder/yaml-cpp")
|
(url "https://github.com/jbeder/yaml-cpp")
|
||||||
(commit (string-append "yaml-cpp-" version))))
|
(commit version)))
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "0ykkxzxcwwiv8l8r697gyqh1nl582krpvi7m7l6b40ijnk4pw30s"))))
|
(base32 "0whdn6pqa56532ml20h89p6rchcrrazdrvi5fz6zpmrkl15yiki7"))))
|
||||||
(build-system cmake-build-system)
|
(build-system cmake-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
'(#:configure-flags '("-DYAML_BUILD_SHARED_LIBS=ON")))
|
'(#:configure-flags '("-DYAML_BUILD_SHARED_LIBS=ON")))
|
||||||
|
|
Loading…
Reference in a new issue