me
/
guix
Archived
1
0
Fork 0

gnu: Add libgit2-1.6.

* gnu/packages/version-control.scm (libgit2-1.6): New variable.

Change-Id: I6e6bc8a7f0a084c299899d97c74b70eacceb810b
Efraim Flashner 2023-10-24 08:27:21 +03:00
parent ea44597373
commit 7090027d41
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 15 additions and 0 deletions

View File

@ -886,6 +886,21 @@ write native speed custom Git applications in any language with bindings.")
;; GPLv2 with linking exception
(license license:gpl2)))
(define-public libgit2-1.6
(package
(inherit libgit2)
(version "1.6.4")
(source (origin
(inherit (package-source libgit2))
(method git-fetch)
(uri (git-reference
(url "https://github.com/libgit2/libgit2")
(commit (string-append "v" version))))
(file-name (git-file-name "libgit2" version))
(sha256
(base32
"078jnis7lwzb38ha5lcrs8hzi4br3c8v7c9xaqkvkcaa8nifcvcm"))))))
(define-public libgit2-1.4
(package
(inherit libgit2)