parses paypal soap logs

chore: fix source path in nix build

- Use $src variable to correctly reference source files
- Add dontUseCmakeConfigure to skip CMake entirely
- Use $CXX environment variable for compiler

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

dunkirk.sh bb3153b3 ecedaee2

verified
Changed files
+3 -2
+3 -2
flake.nix
··· 32 32 src = self; 33 33 34 34 nativeBuildInputs = with pkgs; [ 35 - cmake 36 35 clang 37 36 installShellFiles 38 37 ]; 38 + 39 + dontUseCmakeConfigure = true; 39 40 40 41 buildPhase = '' 41 42 # Direct compilation instead of using CMake 42 43 mkdir -p build 43 - clang++ -std=c++17 -O3 -o build/soapdump src/soapdump.cpp 44 + $CXX -std=c++17 -O3 -o build/soapdump $src/src/soapdump.cpp 44 45 ''; 45 46 46 47 installPhase = ''