summary refs log tree commit diff
path: root/pkgs/applications/editors/gophernotes
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/applications/editors/gophernotes
parent35dfa0e927924956cd47c083709a8147afea6d3d (diff)
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/applications/editors/gophernotes')
-rw-r--r--pkgs/applications/editors/gophernotes/default.nix1
1 files changed, 0 insertions, 1 deletions
diff --git a/pkgs/applications/editors/gophernotes/default.nix b/pkgs/applications/editors/gophernotes/default.nix
index 161acb54bbad5..468b3ff03838f 100644
--- a/pkgs/applications/editors/gophernotes/default.nix
+++ b/pkgs/applications/editors/gophernotes/default.nix
@@ -21,6 +21,5 @@ buildGoModule rec {
     homepage = "https://github.com/gopherdata/gophernotes";
     license = licenses.mit;
     maintainers = [ maintainers.costrouc ];
-    platforms = platforms.all;
   };
 }