upleb.uk

Public git repos — served from a NIP-34 GRASP relay at git.upleb.uk

summaryrefslogtreecommitdiff
path: root/SMOKE_TEST_REPORT.md
diff options
context:
space:
mode:
authorDanConwayDev <DanConwayDev@protonmail.com>2025-11-04 06:36:04 +0000
committerDanConwayDev <DanConwayDev@protonmail.com>2025-11-04 06:36:04 +0000
commit31ed54dab458cb3c0a6472f3e508ccdc7a9b4d79 (patch)
tree59c4a3058236a14ac639f018b13b405a9fa50d84 /SMOKE_TEST_REPORT.md
parent001ca45e385c05b0eaa36d9879e051853aaff107 (diff)
moved to flakes
Diffstat (limited to 'SMOKE_TEST_REPORT.md')
-rw-r--r--SMOKE_TEST_REPORT.md23
1 files changed, 7 insertions, 16 deletions
diff --git a/SMOKE_TEST_REPORT.md b/SMOKE_TEST_REPORT.md
index 6e73db8..ccb3916 100644
--- a/SMOKE_TEST_REPORT.md
+++ b/SMOKE_TEST_REPORT.md
@@ -322,19 +322,11 @@ error: linker `cc` not found
322 322
323### Solutions 323### Solutions
324 324
325**Option 1: Create shell.nix** 325**Option 1: Use flake.nix (Provided)**
326```nix 326```bash
327{ pkgs ? import <nixpkgs> {} }: 327cd grasp-audit
328 328nix develop
329pkgs.mkShell { 329cargo build
330 buildInputs = with pkgs; [
331 rustc
332 cargo
333 gcc
334 pkg-config
335 openssl
336 ];
337}
338``` 330```
339 331
340**Option 2: Use nix-shell with inline expression** 332**Option 2: Use nix-shell with inline expression**
@@ -457,7 +449,7 @@ Expected: Tests run in read-only mode, see real events
457## Next Steps 449## Next Steps
458 450
459### Immediate (Unblock Build) 451### Immediate (Unblock Build)
4601. ✅ Create `shell.nix` for NixOS environment 4521. ✅ Create `flake.nix` for NixOS environment
4612. ✅ Build grasp-audit 4532. ✅ Build grasp-audit
4623. ✅ Run unit tests 4543. ✅ Run unit tests
4634. ✅ Document build process 4554. ✅ Document build process
@@ -528,9 +520,8 @@ Reference: `GRASP_AUDIT_PLAN.md`
528 520
5291. **Set up build environment:** 5211. **Set up build environment:**
530 ```bash 522 ```bash
531 # Create shell.nix (see Solutions section)
532 nix-shell
533 cd grasp-audit 523 cd grasp-audit
524 nix develop
534 cargo build 525 cargo build
535 ``` 526 ```
536 527