From 61e3490c1c6130b0c5319d09c0e726d047dff74c Mon Sep 17 00:00:00 2001 From: "M. A" Date: Wed, 13 Jul 2022 21:03:46 +0000 Subject: [PATCH] nixos/gitlab: Bump git to 2.35.4 Resolves CVE-2022-29187 --- nixos/modules/services/misc/gitlab.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nixos/modules/services/misc/gitlab.nix b/nixos/modules/services/misc/gitlab.nix index ee59cea38dfd..77556bfe0070 100644 --- a/nixos/modules/services/misc/gitlab.nix +++ b/nixos/modules/services/misc/gitlab.nix @@ -19,13 +19,13 @@ let # https://gitlab.com/gitlab-org/gitlab/-/issues/360783#note_992870101. gitPackage = let - version = "2.35.3"; + version = "2.35.4"; in pkgs.git.overrideAttrs (oldAttrs: rec { inherit version; src = pkgs.fetchurl { url = "https://www.kernel.org/pub/software/scm/git/git-${version}.tar.xz"; - sha256 = "sha256-FenbT5vy7Z//MMtioAxcfAkBAV9asEjNtOiwTd7gD6I="; + sha256 = "sha256-mv13OdNkXggeKQkJ+47QcJ6lYmcw6Qjri1ZJ2ETCTOk="; }; });