mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: yaml-cpp: Don't use unstable tarball.
* gnu/packages/serialization.scm (yaml-cpp)[source]: Use GIT-FETCH and GIT-FILE-NAME.
This commit is contained in:
parent
2acbc174b0
commit
417b07ab34
1 changed files with 9 additions and 8 deletions
|
@ -261,14 +261,15 @@ (define-public yaml-cpp
|
|||
(package
|
||||
(name "yaml-cpp")
|
||||
(version "0.6.3")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (string-append
|
||||
"https://github.com/jbeder/yaml-cpp/archive/"
|
||||
"yaml-cpp-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"1vgi193c761xaalq7r62ahiyvg7m32ab4z104k1s12kinf81pskp"))))
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/jbeder/yaml-cpp.git")
|
||||
(commit (string-append "yaml-cpp-" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "0ykkxzxcwwiv8l8r697gyqh1nl582krpvi7m7l6b40ijnk4pw30s"))))
|
||||
(build-system cmake-build-system)
|
||||
(arguments
|
||||
'(#:configure-flags '("-DYAML_BUILD_SHARED_LIBS=ON")))
|
||||
|
|
Loading…
Reference in a new issue