Merge pull request #217563 from wegank/grpc-cli-aarch64
grpc_cli: add aarch64-linux support
This commit is contained in:
commit
8aa6b18411
1 changed files with 2 additions and 1 deletions
|
@ -14,6 +14,7 @@ stdenv.mkDerivation rec {
|
|||
buildInputs = [ curl numactl ];
|
||||
cmakeFlags = [ "-DgRPC_BUILD_TESTS=ON" ];
|
||||
makeFlags = [ "grpc_cli" ];
|
||||
env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isAarch64 "-Wno-error=format-security";
|
||||
installPhase = ''
|
||||
runHook preInstall
|
||||
|
||||
|
@ -26,6 +27,6 @@ stdenv.mkDerivation rec {
|
|||
homepage = "https://github.com/grpc/grpc";
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ doriath ];
|
||||
platforms = [ "x86_64-linux" ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue