First Commit, it compiles!
This commit is contained in:
@@ -0,0 +1,28 @@
|
||||
{ pkgs ? import <nixpkgs> {} }:
|
||||
|
||||
pkgs.mkShell {
|
||||
buildInputs = with pkgs; [
|
||||
# Rust toolchain
|
||||
cargo
|
||||
rustc
|
||||
rustfmt
|
||||
clippy
|
||||
rust-analyzer
|
||||
|
||||
# Build dependencies
|
||||
pkg-config
|
||||
|
||||
# Additional tools
|
||||
cargo-watch
|
||||
cargo-edit
|
||||
|
||||
# Profiling tools
|
||||
cargo-flamegraph
|
||||
samply
|
||||
linuxPackages.perf
|
||||
|
||||
];
|
||||
|
||||
# Environment variables
|
||||
RUST_BACKTRACE = 1;
|
||||
}
|
||||
Reference in New Issue
Block a user