mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: libgit2-1.8: Update to 1.8.1.
* gnu/packages/version-control.scm (libgit2-1.8): Update to 1.8.1. [source]: deps/http-parser does not exist so update the list [arguments]: semantics of -DUSE_HTTP_PARSER has changed, so update configure-flags to reflect the same Change-Id: Ifd9694a93326f7c3d368bd354a5fadf4e4b93119 Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
07adb7e26a
commit
d3832de763
1 changed files with 18 additions and 2 deletions
|
@ -1025,7 +1025,7 @@ (define-public libgit2-1.7
|
|||
(define-public libgit2-1.8
|
||||
(package
|
||||
(inherit libgit2-1.7)
|
||||
(version "1.8.0")
|
||||
(version "1.8.1")
|
||||
(source (origin
|
||||
(inherit (package-source libgit2-1.7))
|
||||
(uri (git-reference
|
||||
|
@ -1034,7 +1034,23 @@ (define-public libgit2-1.8
|
|||
(file-name (git-file-name "libgit2" version))
|
||||
(sha256
|
||||
(base32
|
||||
"0f0vqml6fp94z07xkpim2sdj2xvpxnsrwbm1q1dibx4vqjd7mh3q"))))))
|
||||
"1mh55804cvxl2cyl4clinajzgfn3zmlhacnv1pdvdj4w6z2w4si7"))
|
||||
(snippet
|
||||
'(begin
|
||||
(for-each delete-file-recursively
|
||||
'("deps/chromium-zlib"
|
||||
"deps/llhttp"
|
||||
"deps/ntlmclient"
|
||||
"deps/pcre"
|
||||
"deps/winhttp"
|
||||
"deps/zlib"))))))
|
||||
(arguments (substitute-keyword-arguments (package-arguments libgit2-1.7)
|
||||
((#:configure-flags flags #~(list))
|
||||
#~(map (lambda (arg)
|
||||
(if (string= "-DUSE_HTTP_PARSER=system" arg)
|
||||
"-DUSE_HTTP_PARSER=http-parser"
|
||||
arg))
|
||||
#$flags))))))
|
||||
|
||||
(define-public libgit2-1.6
|
||||
(package
|
||||
|
|
Loading…
Reference in a new issue