about summary refs log tree commit diff
path: root/third_party
diff options
context:
space:
mode:
authorVincent Ambo <mail@tazj.in>2020-06-17T23·54+0100
committerVincent Ambo <mail@tazj.in>2020-06-17T23·54+0100
commitab7ef0c547b474bc31c41f1162b73ee47e34d49e (patch)
treeb4cd9c3f50eb47c7a6909464d952bc38d1da8ea6 /third_party
parent3edb8a7a7d936465acccfc8649087e5c21488be7 (diff)
chore(3p): Use typedGo as the main Go r/1015
Because it seems to work and we can.

Change-Id: I0ba3b6541efa8c21ead875368eca18c73db9a416
Diffstat (limited to 'third_party')
-rw-r--r--third_party/default.nix5
1 files changed, 2 insertions, 3 deletions
diff --git a/third_party/default.nix b/third_party/default.nix
index 0f25b3730e..485c4537a1 100644
--- a/third_party/default.nix
+++ b/third_party/default.nix
@@ -66,7 +66,6 @@ let
       glibc
       gmock
       gnutar
-      go
       google-cloud-sdk
       graphviz
       gzip
@@ -169,7 +168,7 @@ in exposed.lib.fix(self: exposed // {
 
   # Packages to be overridden
   originals = {
-    inherit (nixpkgs) grpc notmuch;
+    inherit (nixpkgs) go grpc notmuch;
     inherit (stableNixpkgs) git;
     ffmpeg = nixpkgs.ffmpeg-full;
   };
@@ -182,7 +181,7 @@ in exposed.lib.fix(self: exposed // {
   # The Go authors have released a version of Go (in alpha) that has a
   # type system. This makes it available, specifically for use with
   # //nix/buildTypedGo.
-  typedGo = nixpkgs.go.overrideAttrs(old: {
+  go = nixpkgs.go.overrideAttrs(old: {
     version = "dev-go2go";
     doCheck = false;
     patches = []; # they all don't apply and are mostly about Darwin crap