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
Changed files
+3 -2
+3 -2
flake.nix
···
];
buildPhase = ''
-
cmake -B build -S .
-
cmake --build build --config Release
+
# Direct compilation instead of using CMake
+
mkdir -p build
+
clang++ -std=c++17 -O3 -o build/soapdump src/soapdump.cpp
'';
installPhase = ''