diff options
author | Ludovic Courtès <ludo@gnu.org> | 2024-02-26 22:15:57 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2024-02-26 23:41:36 +0100 |
commit | 9f00975f55e569fc3ba204fc34261a942a19b4e5 (patch) | |
tree | cf6c09c94a45ee5018c77a9dfe7ea525ff0a40cd /gnu | |
parent | d2159ee9d19a27b06342e2d67b7f0e085e92090a (diff) | |
download | guix-9f00975f55e569fc3ba204fc34261a942a19b4e5.tar.gz guix-9f00975f55e569fc3ba204fc34261a942a19b4e5.zip |
gnu: guile-git: Depend on libgit2 1.7.
* gnu/packages/guile.scm (guile-git)[inputs]: Replace LIBGIT2-1.3 with
LIBGIT2-1.7.
Change-Id: Ia386f977b0888b7bd9b26443ac6150428fda2155
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/guile.scm | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/gnu/packages/guile.scm b/gnu/packages/guile.scm index 78295ab51c..3476af2a51 100644 --- a/gnu/packages/guile.scm +++ b/gnu/packages/guile.scm @@ -869,9 +869,7 @@ type system, elevating types to first-class status.") (native-inputs (list pkg-config autoconf automake texinfo guile-3.0 guile-bytestructures)) (inputs - ;; libgit2@1.4.3 ‘fixed’ a git CVE it never shared, breaking Guix. Use - ;; 1.3 for now; see <https://issues.guix.gnu.org/55399> for alternatives. - (list guile-3.0 libgit2-1.3)) + (list guile-3.0 libgit2-1.7)) (propagated-inputs (list guile-bytestructures)) (synopsis "Guile bindings for libgit2") |