Browse Source

Cleanup development shells

main
parent
commit
d981cd9f46
Signed by: chris GPG Key ID: 3025DCBD46F81C0F
  1. 5
      README.org
  2. 2
      shells/cc.nix
  3. 2
      shells/go.nix
  4. 1
      shells/grpc.nix

5
README.org

@ -211,6 +211,8 @@ mkShell {
buildInputs = [ buildInputs = [
go go
gopls gopls
protoc-gen-go
protoc-gen-go-grpc
]; ];
shellHook = '' shellHook = ''
export GO111MODULE=on export GO111MODULE=on
@ -284,6 +286,7 @@ mkShell {
grpc grpc
grpcui grpcui
grpcurl grpcurl
grpc-tools
]; ];
shellHook = '' shellHook = ''
''; '';
@ -307,9 +310,7 @@ mkShell {
ccls ccls
cmake cmake
gnumake gnumake
libstdcxx5
gcc-unwrapped gcc-unwrapped
llvmPackages.libcxx
]; ];
shellHook = '' shellHook = ''
''; '';

2
shells/cc.nix

@ -8,9 +8,7 @@ mkShell {
ccls ccls
cmake cmake
gnumake gnumake
libstdcxx5
gcc-unwrapped gcc-unwrapped
llvmPackages.libcxx
]; ];
shellHook = '' shellHook = ''
''; '';

2
shells/go.nix

@ -6,6 +6,8 @@ mkShell {
buildInputs = [ buildInputs = [
go go
gopls gopls
protoc-gen-go
protoc-gen-go-grpc
]; ];
shellHook = '' shellHook = ''
export GO111MODULE=on export GO111MODULE=on

1
shells/grpc.nix

@ -7,6 +7,7 @@ mkShell {
grpc grpc
grpcui grpcui
grpcurl grpcurl
grpc-tools
]; ];
shellHook = '' shellHook = ''
''; '';

Loading…
Cancel
Save