guix_mirror_bot pushed a commit to branch master
in repository guix.
commit 4018a134736f7530c95ee6330e65e22b94ae0132
Author: Efraim Flashner <[email protected]>
AuthorDate: Tue Dec 30 15:29:34 2025 +0200
gnu: libgit2-1.3: Inherit from libgit2-1.5.
* gnu/packages/version-control.scm (libgit2-1.3): Inherit from
libgit2-1.5.
Change-Id: I320bcd9965b1a1651b6b4d2515cdf28b0c8eddf2
---
gnu/packages/version-control.scm | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/version-control.scm b/gnu/packages/version-control.scm
index 797e0d7d70..31f3c353fd 100644
--- a/gnu/packages/version-control.scm
+++ b/gnu/packages/version-control.scm
@@ -1432,10 +1432,10 @@ write native speed custom Git applications in any
language with bindings.")
(define-public libgit2-1.3
(package
- (inherit libgit2-1.4)
+ (inherit libgit2-1.5)
(version "1.3.2")
(source (origin
- (inherit (package-source libgit2-1.4))
+ (inherit (package-source libgit2-1.5))
(method git-fetch)
(uri (git-reference
(url "https://github.com/libgit2/libgit2")
@@ -1445,7 +1445,7 @@ write native speed custom Git applications in any
language with bindings.")
(base32
"1dngga8jq419z6ps65wpmh2jihcf70k6r98pb1m1yiwj7qqh9792"))))
(arguments
- (substitute-keyword-arguments (package-arguments libgit2)
+ (substitute-keyword-arguments (package-arguments libgit2-1.5)
((#:phases _ '%standard-phases)
`(modify-phases %standard-phases
;; Run checks more verbosely, unless we are cross-compiling.