From d981cd9f46a7d639cca6e4de6332e51d72f22b86 Mon Sep 17 00:00:00 2001 From: Christopher James Hayward Date: Thu, 29 Jul 2021 11:23:13 -0400 Subject: [PATCH] Cleanup development shells --- README.org | 5 +++-- shells/cc.nix | 2 -- shells/go.nix | 2 ++ shells/grpc.nix | 1 + 4 files changed, 6 insertions(+), 4 deletions(-) diff --git a/README.org b/README.org index 45a7a2d..84af4dc 100644 --- a/README.org +++ b/README.org @@ -211,6 +211,8 @@ mkShell { buildInputs = [ go gopls + protoc-gen-go + protoc-gen-go-grpc ]; shellHook = '' export GO111MODULE=on @@ -284,6 +286,7 @@ mkShell { grpc grpcui grpcurl + grpc-tools ]; shellHook = '' ''; @@ -307,9 +310,7 @@ mkShell { ccls cmake gnumake - libstdcxx5 gcc-unwrapped - llvmPackages.libcxx ]; shellHook = '' ''; diff --git a/shells/cc.nix b/shells/cc.nix index e6c62e4..9bef1bc 100644 --- a/shells/cc.nix +++ b/shells/cc.nix @@ -8,9 +8,7 @@ mkShell { ccls cmake gnumake - libstdcxx5 gcc-unwrapped - llvmPackages.libcxx ]; shellHook = '' ''; diff --git a/shells/go.nix b/shells/go.nix index fce3d44..1fd770a 100644 --- a/shells/go.nix +++ b/shells/go.nix @@ -6,6 +6,8 @@ mkShell { buildInputs = [ go gopls + protoc-gen-go + protoc-gen-go-grpc ]; shellHook = '' export GO111MODULE=on diff --git a/shells/grpc.nix b/shells/grpc.nix index 1d3a87d..1a43913 100644 --- a/shells/grpc.nix +++ b/shells/grpc.nix @@ -7,6 +7,7 @@ mkShell { grpc grpcui grpcurl + grpc-tools ]; shellHook = '' '';