diff options
author | Ludovic Courtès <ludo@gnu.org> | 2016-05-23 14:55:44 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2016-05-23 15:02:26 +0200 |
commit | bc73a84398fa54b0a11a80c749bf78eb0a58dbe6 (patch) | |
tree | 3e7b6670989ceb4f31464bad632c0332121d96a0 /gnu/packages/version-control.scm | |
parent | 12b6f6527e49c8c4191929a72b1692dbd9eb2440 (diff) | |
parent | 624d4e2e6ba402c374a340869306eec65a808a20 (diff) | |
download | patches-bc73a84398fa54b0a11a80c749bf78eb0a58dbe6.tar patches-bc73a84398fa54b0a11a80c749bf78eb0a58dbe6.tar.gz |
Merge branch 'master' into core-updates
Diffstat (limited to 'gnu/packages/version-control.scm')
-rw-r--r-- | gnu/packages/version-control.scm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gnu/packages/version-control.scm b/gnu/packages/version-control.scm index 796fd7ad67..db3e9f1768 100644 --- a/gnu/packages/version-control.scm +++ b/gnu/packages/version-control.scm @@ -265,6 +265,7 @@ as well as the classic centralized workflow.") ;; FIXME: This variable designates a single file; it is not a search path. (list (search-path-specification (variable "GIT_SSL_CAINFO") + (file-type 'regular) (files '("etc/ssl/certs/ca-certificates.crt"))))) (synopsis "Distributed version control system") @@ -323,7 +324,7 @@ command."))) (define-public libgit2 (package (name "libgit2") - (version "0.24.0") + (version "0.24.1") (source (origin (method url-fetch) (uri (string-append "https://github.com/libgit2/libgit2/" @@ -331,7 +332,7 @@ command."))) (file-name (string-append name "-" version ".tar.gz")) (sha256 (base32 - "1c5jx0pcpz83x7s36jimfz5bj0vy7vwpchq9p4sgdqxy8gwr6rhw")))) + "1ppyfwxc276d2p2pwbzlmvs2bkgng425rl8k2rf9nsq66jxqq6b0")))) (build-system cmake-build-system) (arguments `(#:phases |