nix: init tooling

This commit is contained in:
raf 2025-05-01 05:04:43 +03:00
commit e4d397ac9c
Signed by: NotAShelf
GPG key ID: 29D95B64378DB4BF
5 changed files with 115 additions and 0 deletions

28
nix/shell.nix Normal file
View file

@ -0,0 +1,28 @@
{
mkShell,
rust-analyzer,
rustfmt,
clippy,
cargo,
gcc,
openssl,
pkg-config,
rustc,
}:
mkShell {
name = "eris";
packages = [
rust-analyzer
rustfmt
clippy
cargo
gcc
clippy
rustfmt
rustc
# For TLS and friends
openssl
pkg-config
];
}