diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2018-05-03 17:42:01 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2018-05-04 02:22:00 +0200 |
commit | 942cf159dada7e9b79b6836e56dfc8ef1e1fe00b (patch) | |
tree | 16b595b785d470cf19601a38715b73da5a4f1d66 /gnu | |
parent | fc7c91a53a9c5c4ce0fd6d62dd8a57f4d2e6a590 (diff) | |
download | guix-942cf159dada7e9b79b6836e56dfc8ef1e1fe00b.tar guix-942cf159dada7e9b79b6836e56dfc8ef1e1fe00b.tar.gz |
gnu: yaml-cpp: Update to 0.6.2.
* gnu/packages/serialization.scm (yaml-cpp): Update to 0.6.2.
[inputs]: Remove removed BOOST dependency.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/serialization.scm | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/gnu/packages/serialization.scm b/gnu/packages/serialization.scm index c3d355972f..d46c8698f4 100644 --- a/gnu/packages/serialization.scm +++ b/gnu/packages/serialization.scm @@ -248,7 +248,7 @@ that implements both the msgpack and msgpack-rpc specifications.") (define-public yaml-cpp (package (name "yaml-cpp") - (version "0.6.1") + (version "0.6.2") (source (origin (method url-fetch) (uri (string-append @@ -256,12 +256,10 @@ that implements both the msgpack and msgpack-rpc specifications.") "yaml-cpp-" version ".tar.gz")) (sha256 (base32 - "038ddf771d1zrdfiwqzq2lsjdis1fxbaasbdja2w9f1av3k3gv15")))) + "01gxn7kc8pzyh4aadjxxzq8cignmbwmm9rfrsmgqfg9w2q75dn74")))) (build-system cmake-build-system) (arguments '(#:configure-flags '("-DBUILD_SHARED_LIBS=ON"))) - (inputs - `(("boost" ,boost))) (native-inputs `(("python" ,python))) (home-page "https://github.com/jbeder/yaml-cpp") |