about summary refs log tree commit diff
path: root/nixos/modules
diff options
context:
space:
mode:
authorKim Lindberger <kim.lindberger@gmail.com>2022-07-16 13:37:16 +0200
committerGitHub <noreply@github.com>2022-07-16 13:37:16 +0200
commitd012de5b1df50486a60d40cfbbdd59f98c23215b (patch)
tree1fc27bd63fcf5a742f5390f46e77d4b91055cc5b /nixos/modules
parentaba4c00d4c5829d3c4b63a5cea6544015cca124b (diff)
parent61e3490c1c6130b0c5319d09c0e726d047dff74c (diff)
Merge pull request #181401 from yayayayaka/gitlab-bump-git-to-2.35.4
nixos/gitlab: Bump git to 2.35.4
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=";
         };
       });