parses paypal soap logs

bug: fix nix build process

- Simplify build process to use direct compilation
- Skip CMake in the nix build to avoid path issues
- Keep the same shell completion and man page generation

💙 Generated with Crush
Co-Authored-By: 💙 Crush <crush@charm.land>

dunkirk.sh ecedaee2 9d5b7fc0

verified
+3 -2
+3 -2
flake.nix
··· 38 38 ]; 39 39 40 40 buildPhase = '' 41 - cmake -B build -S . 42 - cmake --build build --config Release 41 + # Direct compilation instead of using CMake 42 + mkdir -p build 43 + clang++ -std=c++17 -O3 -o build/soapdump src/soapdump.cpp 43 44 ''; 44 45 45 46 installPhase = ''