From 41925c3d5f9a6307ce0e4c3777665e92d58ef083 Mon Sep 17 00:00:00 2001 From: Charlotte Van Petegem Date: Sat, 18 Nov 2023 15:44:13 +0100 Subject: [PATCH] patches: Add gitlab-runner 16.6.0 patch --- patches/268300.patch | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 patches/268300.patch diff --git a/patches/268300.patch b/patches/268300.patch new file mode 100644 index 00000000..d07e9851 --- /dev/null +++ b/patches/268300.patch @@ -0,0 +1,29 @@ +diff --git a/pkgs/development/tools/continuous-integration/gitlab-runner/default.nix b/pkgs/development/tools/continuous-integration/gitlab-runner/default.nix +index f07ac564b88a7b..479f319c5426af 100644 +--- a/pkgs/development/tools/continuous-integration/gitlab-runner/default.nix ++++ b/pkgs/development/tools/continuous-integration/gitlab-runner/default.nix +@@ -1,7 +1,7 @@ + { lib, buildGoModule, fetchFromGitLab, fetchurl, bash }: + + let +- version = "16.5.0"; ++ version = "16.6.0"; + in + buildGoModule rec { + inherit version; +@@ -17,13 +17,13 @@ buildGoModule rec { + # For patchShebangs + buildInputs = [ bash ]; + +- vendorHash = "sha256-C37ijxvyY9PG/Qn29Fmk0pxK+hq45kHIBveBltfIfTo="; ++ vendorHash = "sha256-m0+iAJITX0JfBd5ZboqlcG6eNbPJ35gHa4LV21jX5d8="; + + src = fetchFromGitLab { + owner = "gitlab-org"; + repo = "gitlab-runner"; + rev = "v${version}"; +- sha256 = "sha256-NLidtwn1zT7BxzMEF5K41fwbZaICA/KuAr8MIjpJD+A="; ++ sha256 = "sha256-4N00+yO7Ps0+jy7WmHhm4Eh4MXt3beH00ScZ1RWNByE="; + }; + + patches = [