diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2023-01-15 01:00:03 +0100 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2023-01-15 01:00:08 +0100 |
commit | 51f8a7aced70b7f79037bd99019dddaea07ced25 (patch) | |
tree | df72687fc55cdf9c572083165cdc0f36f2209530 /gnu/packages/version-control.scm | |
parent | ecda67a577570f412b103e5dd8ed1a44193a9c11 (diff) | |
download | guix-51f8a7aced70b7f79037bd99019dddaea07ced25.tar guix-51f8a7aced70b7f79037bd99019dddaea07ced25.tar.gz |
gnu: git: Update to 2.39.1 [fixes CVE-2022-41903 & CVE-2022-23521].
* gnu/packages/version-control.scm (git): Update to 2.39.1.
Reported by HexMachina in #guix.
Diffstat (limited to 'gnu/packages/version-control.scm')
-rw-r--r-- | gnu/packages/version-control.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/packages/version-control.scm b/gnu/packages/version-control.scm index 2c1494a4dd..d2be7df91f 100644 --- a/gnu/packages/version-control.scm +++ b/gnu/packages/version-control.scm @@ -224,14 +224,14 @@ Python 3.3 and later, rather than on Python 2.") (define-public git (package (name "git") - (version "2.38.1") + (version "2.39.1") (source (origin (method url-fetch) (uri (string-append "mirror://kernel.org/software/scm/git/git-" version ".tar.xz")) (sha256 (base32 - "1n8afjjim30lddhm25cdscdr2xfa518293jhqbxy1fd2b3mgipcp")))) + "0qf1wly7zagg23svpv533va5v213y7y3lfw76ldkf35k8w48m8s0")))) (build-system gnu-build-system) (native-inputs `(("native-perl" ,perl) @@ -251,7 +251,7 @@ Python 3.3 and later, rather than on Python 2.") version ".tar.xz")) (sha256 (base32 - "17bms6d0v5dw34bpsm78gpq1pn0jp6ap8nbcrby4hzfwa810kya7")))) + "0xf7ki90xw77nvmnkw50xaivyfi8jddfq0h8crzi7m9zjs7aa8mm")))) ;; For subtree documentation. ("asciidoc" ,asciidoc) ("docbook-xsl" ,docbook-xsl) |