about summary refs log tree commit diff
path: root/nixos/modules
diff options
context:
space:
mode:
authorM. A <mak@nyantec.com>2022-07-13 21:03:46 +0000
committerM. A <mak@nyantec.com>2022-07-13 21:03:46 +0000
commit61e3490c1c6130b0c5319d09c0e726d047dff74c (patch)
treef67b06feccfc52484c78f08e61fc661e91919ba8 /nixos/modules
parentaf38697574ea1b8545cce88d006959598d79812a (diff)
nixos/gitlab: Bump git to 2.35.4
Resolves CVE-2022-29187
Diffstat (limited to 'nixos/modules')
-rw-r--r--nixos/modules/services/misc/gitlab.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/nixos/modules/services/misc/gitlab.nix b/nixos/modules/services/misc/gitlab.nix
index ee59cea38dfd1..77556bfe00707 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=";
         };
       });