about summary refs log blame commit diff
path: root/shell.nix
blob: 5438e3597693cb9c33b0dcab0942983effb77340 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
                                                       
                                         
                                       
                                        



                          
                                            
                                         
                                   
                                                     

                                                                 
    
{ mkShell, rustc, cargo, rust-analyzer, clippy, rustfmt
, cargo-watch, cargo-edit, cargo-outdated
, cargo-crev, cargo-audit
, xh, systemfd, tokio-console, sqlx-cli
, pkg-config, protobuf, openssl
, typescript, typescript-language-server
}:
mkShell {
  name = "rust-dev-shell";

  nativeBuildInputs = [
    rustc cargo rust-analyzer clippy rustfmt
    cargo-watch cargo-edit cargo-outdated
    cargo-crev cargo-audit sqlx-cli
    xh systemfd typescript typescript-language-server
    # protobuf is required for tokio-console's console-subscriber
    #tokio-console protobuf
    pkg-config openssl
  ];
}