gitlab: add back grpc patch

They downgraded grpc in the fix release

(cherry picked from commit f007b794c758000a275b00dd0695d2fb155195f0)
This commit is contained in:
Yureka
2021-09-03 14:33:07 +00:00
committed by github-actions[bot]
parent d8e386b70d
commit 544ad3ea4b
3 changed files with 26 additions and 0 deletions
@@ -9,6 +9,16 @@ let
inherit ruby;
copyGemFiles = true;
gemdir = ./.;
gemset =
let x = import (gemdir + "/gemset.nix");
in x // {
# grpc expects the AR environment variable to contain `ar rpc`. See the
# discussion in nixpkgs #63056.
grpc = x.grpc // {
patches = [ ../fix-grpc-ar.patch ];
dontBuild = false;
};
};
};
version = "14.2.3";
gitaly_package = "gitlab.com/gitlab-org/gitaly/v${lib.versions.major version}";