First Rust rewrite release! 🎉

This commit is contained in:
Aaron Honeycutt 2025-04-23 18:39:19 -06:00
parent 14b8ada912
commit aebb38df61
9 changed files with 1389 additions and 15 deletions

29
shell.nix Normal file
View file

@ -0,0 +1,29 @@
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
buildInputs = with pkgs; [
# Rust
cargo
rustc
# Compiler
gnumake
clang
llvmPackages.libclang
llvmPackages.clang
# System
btrfs-progs
e2fsprogs
openssl
pkg-config
util-linux
];
shellHook = ''
export LIBCLANG_PATH="${pkgs.llvmPackages.libclang.lib}/lib"
export CLANG_PATH="${pkgs.llvmPackages.clang}/bin/clang"
export RUST_BACKTRACE=1
echo "We're ready to make some Rust!"
'';
}