Commit 65d801bf authored by Sandro Jäckel's avatar Sandro Jäckel
Browse files

gotools: don't build getgo

parent fa1c1b1e
Loading
Loading
Loading
Loading
+8 −5
Original line number Diff line number Diff line
@@ -9,13 +9,16 @@ buildGoModule rec {
    owner = "golang";
    repo = "tools";
    rev = "v${version}";
    sha256 = "sha256-z5XJ7tflOfDBtv4rp7WEjnHsXIyjNw205PhazEvaYcw=";
  };

  postPatch = ''
    # The gopls folder contains a Go submodule which causes a build failure
    # and lives in its own package named gopls.
    postFetch = ''
      rm -r $out/gopls
    rm -r gopls
    # getgo is an experimental go installer which adds generic named server and client binaries to $out/bin
    rm -r cmd/getgo
  '';
    sha256 = "sha256-6Sdo6oKJHYXWkvJmbte7Wc7tov5AHzn70Bi1QdQ5HR4=";
  };

  vendorSha256 = "sha256-fp0pb3EcGRDWlSpgel4pYRdsPJGk8/d57EjWJ+fzq7g=";