Set up shell.nix direnv

main
Elnu 1 year ago
parent 364fdede86
commit c467816a0b

@ -0,0 +1 @@
use nix

@ -0,0 +1,16 @@
{ pkgs ? import <nixpkgs> {}}:
pkgs.mkShell {
buildInputs = with pkgs; [
rustc
cargo
rustfmt
rust-analyzer
clippy
pkg-config
openssl
];
RUST_BACKTRACE = 1;
}
Loading…
Cancel
Save