3
5
Fork 0
mirror of git://git.savannah.gnu.org/guix.git synced 2023-12-14 03:33:07 +01:00

gnu: Add libgit2-0.28.

* gnu/packages/version-control.scm (libgit2-0.28): New variable.
This commit is contained in:
Efraim Flashner 2020-04-12 13:44:12 +03:00
parent f741e914eb
commit 8c73e2f284
Signed by untrusted user: efraim
GPG key ID: 41AAE7DCCA3D8351

View file

@ -653,6 +653,24 @@ write native speed custom Git applications in any language with bindings.")
;; GPLv2 with linking exception
(license license:gpl2)))
(define-public libgit2-0.28
(package
(inherit libgit2)
(version "0.28.5")
(source
(origin
(method url-fetch)
(uri (string-append "https://github.com/libgit2/libgit2/releases/"
"download/v" version
"/libgit2-" version ".tar.gz"))
(sha256
(base32
"0hjgpqjjmkciw1i8jqkx9q2vhdc4fc99qajhrj2bq8ziwsp6hyrb"))
(patches (search-patches "libgit2-mtime-0.patch"))
(modules '((guix build utils)))
(snippet '(begin
(delete-file-recursively "deps") #t))))))
(define-public git-crypt
(package
(name "git-crypt")