From a4b7116f670b56e196d3ae4bdb626185d23b8d34 Mon Sep 17 00:00:00 2001 From: Christopher James Hayward Date: Sat, 31 Jul 2021 09:37:28 -0400 Subject: [PATCH] Fix development shell(s) --- README.org | 10 +++++++--- shells/go.nix | 6 ++++-- shells/grpc.nix | 4 +++- 3 files changed, 14 insertions(+), 6 deletions(-) diff --git a/README.org b/README.org index f19d9b5..f293a69 100644 --- a/README.org +++ b/README.org @@ -211,8 +211,10 @@ mkShell { buildInputs = [ go gopls - protoc-gen-go - protoc-gen-go-grpc + + # FIXME: Broken on nixpkgs/unstable. + # protoc-gen-go + # protoc-gen-go-grpc ]; shellHook = '' export GO111MODULE=on @@ -286,7 +288,9 @@ mkShell { grpc grpcui grpcurl - grpc-tools + + # FIXME: Broken on nixpkgs/unstable. + # grpc-tools ]; shellHook = '' ''; diff --git a/shells/go.nix b/shells/go.nix index 1fd770a..24208f4 100644 --- a/shells/go.nix +++ b/shells/go.nix @@ -6,8 +6,10 @@ mkShell { buildInputs = [ go gopls - protoc-gen-go - protoc-gen-go-grpc + + # FIXME: Broken on nixpkgs/unstable. + # protoc-gen-go + # protoc-gen-go-grpc ]; shellHook = '' export GO111MODULE=on diff --git a/shells/grpc.nix b/shells/grpc.nix index 1a43913..76aecac 100644 --- a/shells/grpc.nix +++ b/shells/grpc.nix @@ -7,7 +7,9 @@ mkShell { grpc grpcui grpcurl - grpc-tools + + # FIXME: Broken on nixpkgs/unstable. + # grpc-tools ]; shellHook = '' '';