diff options
author | Leo Famulari <leo@famulari.name> | 2017-08-10 14:33:29 -0400 |
---|---|---|
committer | Leo Famulari <leo@famulari.name> | 2017-08-10 15:02:04 -0400 |
commit | 38f8a882abeb0091edaf52fc905451c3d392b00e (patch) | |
tree | e961a73b1b95bad01a67dab27cdf06930ea060aa /gnu | |
parent | 5993f7c455112e72eb1becf9f787045971ea4ece (diff) | |
download | guix-38f8a882abeb0091edaf52fc905451c3d392b00e.tar guix-38f8a882abeb0091edaf52fc905451c3d392b00e.tar.gz |
gnu: git: Update to 2.14.1 [fixes CVE-2017-1000117].
* gnu/packages/version-control.scm (git): Update to 2.14.1.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/version-control.scm | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/gnu/packages/version-control.scm b/gnu/packages/version-control.scm index df315aec6c..55401c9287 100644 --- a/gnu/packages/version-control.scm +++ b/gnu/packages/version-control.scm @@ -121,14 +121,14 @@ as well as the classic centralized workflow.") (define-public git (package (name "git") - (version "2.14.0") + (version "2.14.1") (source (origin (method url-fetch) (uri (string-append "mirror://kernel.org/software/scm/git/git-" version ".tar.xz")) (sha256 (base32 - "0xarcp0m7jbncic0g3ahz8l2d6b27h0g9ndgrhy9abkx61m6wgpr")))) + "1iic3wiihxp3l3k6d4z886v3869c3dzgddjxnd5124wy1rnlqwkg")))) (build-system gnu-build-system) (native-inputs `(("native-perl" ,perl) @@ -140,8 +140,9 @@ as well as the classic centralized workflow.") "mirror://kernel.org/software/scm/git/git-manpages-" version ".tar.xz")) (sha256 + (base32 - "0kc2n6b1lrbr0wc8lk3xnrljn4fgzgab82icv658gdvyl9l3qrbx")))))) + "1whlsiicayalym4hkf01zdiqpw37gdf7c52gw9ki7bv2x3hf3g3y")))))) (inputs `(("curl" ,curl) ("expat" ,expat) |