From 31ed54dab458cb3c0a6472f3e508ccdc7a9b4d79 Mon Sep 17 00:00:00 2001 From: DanConwayDev Date: Tue, 4 Nov 2025 06:36:04 +0000 Subject: moved to flakes --- grasp-audit/shell.nix | 38 -------------------------------------- 1 file changed, 38 deletions(-) delete mode 100644 grasp-audit/shell.nix (limited to 'grasp-audit/shell.nix') diff --git a/grasp-audit/shell.nix b/grasp-audit/shell.nix deleted file mode 100644 index 54bb3b8..0000000 --- a/grasp-audit/shell.nix +++ /dev/null @@ -1,38 +0,0 @@ -{ pkgs ? import {} }: - -pkgs.mkShell { - buildInputs = with pkgs; [ - # Rust toolchain - rustc - cargo - rustfmt - clippy - - # Build dependencies - gcc - pkg-config - - # Libraries - openssl - - # Development tools - git - ]; - - # Environment variables - RUST_BACKTRACE = "1"; - RUST_LOG = "info"; - - shellHook = '' - echo "🦀 Rust development environment loaded" - echo "" - echo "Available commands:" - echo " cargo build - Build the project" - echo " cargo test - Run unit tests" - echo " cargo test --ignored - Run integration tests (needs relay)" - echo " cargo run --example simple_audit - Run example" - echo "" - echo "Rust version: $(rustc --version)" - echo "Cargo version: $(cargo --version)" - ''; -} -- cgit v1.2.3