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
@@ -22,6 +22,12 @@ let
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;
};
# the openssl needs the openssl include files
openssl = x.openssl // {
buildInputs = [ openssl ];