mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 21:03:15 +00:00
Merge pull request #217563 from wegank/grpc-cli-aarch64
grpc_cli: add aarch64-linux support
This commit is contained in:
commit
8aa6b18411
@ -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 New Issue
Block a user