summary refs log tree commit diff
path: root/pkgs/development/libraries/boringssl
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/libraries/boringssl
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/libraries/boringssl')
-rw-r--r--pkgs/development/libraries/boringssl/default.nix1
1 files changed, 0 insertions, 1 deletions
diff --git a/pkgs/development/libraries/boringssl/default.nix b/pkgs/development/libraries/boringssl/default.nix
index f8c27f96dcc..d51cf159598 100644
--- a/pkgs/development/libraries/boringssl/default.nix
+++ b/pkgs/development/libraries/boringssl/default.nix
@@ -52,7 +52,6 @@ buildGoModule {
   meta = with lib; {
     description = "Free TLS/SSL implementation";
     homepage    = "https://boringssl.googlesource.com";
-    platforms   = platforms.all;
     maintainers = [ maintainers.thoughtpolice ];
     license = with licenses; [ openssl isc mit bsd3 ];
   };