summary refs log tree commit diff
path: root/pkgs/development/tools/protoc-gen-go-grpc
diff options
context:
space:
mode:
authorArnout Engelen <arnout@bzzt.net>2021-04-26 08:55:02 +0200
committerArnout Engelen <arnout@bzzt.net>2021-04-26 08:59:56 +0200
commit1be3d412c055994870de783417c52af4ef443260 (patch)
tree3750d8b83fe54aa40aab9ed5f67dd02755a8aa92 /pkgs/development/tools/protoc-gen-go-grpc
parent35dfa0e927924956cd47c083709a8147afea6d3d (diff)
downloadnixpkgs-1be3d412c055994870de783417c52af4ef443260.tar
nixpkgs-1be3d412c055994870de783417c52af4ef443260.tar.gz
nixpkgs-1be3d412c055994870de783417c52af4ef443260.tar.bz2
nixpkgs-1be3d412c055994870de783417c52af4ef443260.tar.lz
nixpkgs-1be3d412c055994870de783417c52af4ef443260.tar.xz
nixpkgs-1be3d412c055994870de783417c52af4ef443260.tar.zst
nixpkgs-1be3d412c055994870de783417c52af4ef443260.zip
treewide: go: inherit platforms instead of using platforms.all
`buildGoModule` and `buildGoPackage` by default inherit the `platforms`
from go. That seems better than explicitly configuring `platforms.all`.

There are also many packages that specify 'linux + darwin' - this is
even suggested in the documentation. We might also want to update those,
but let's do the noncontroversial change first.
Diffstat (limited to 'pkgs/development/tools/protoc-gen-go-grpc')
-rw-r--r--pkgs/development/tools/protoc-gen-go-grpc/default.nix1
1 files changed, 0 insertions, 1 deletions
diff --git a/pkgs/development/tools/protoc-gen-go-grpc/default.nix b/pkgs/development/tools/protoc-gen-go-grpc/default.nix
index 40aa45a3008..6fd939d0023 100644
--- a/pkgs/development/tools/protoc-gen-go-grpc/default.nix
+++ b/pkgs/development/tools/protoc-gen-go-grpc/default.nix
@@ -24,6 +24,5 @@ buildGoPackage rec {
     description = "The Go language implementation of gRPC. HTTP/2 based RPC";
     license = licenses.asl20;
     maintainers = [ maintainers.raboof ];
-    platforms = platforms.all;
   };
 }