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
···
src = self;
nativeBuildInputs = with pkgs; [
-
cmake
clang
installShellFiles
];
buildPhase = ''
# Direct compilation instead of using CMake
mkdir -p build
-
clang++ -std=c++17 -O3 -o build/soapdump src/soapdump.cpp
'';
installPhase = ''
···
src = self;
nativeBuildInputs = with pkgs; [
clang
installShellFiles
];
+
+
dontUseCmakeConfigure = true;
buildPhase = ''
# Direct compilation instead of using CMake
mkdir -p build
+
$CXX -std=c++17 -O3 -o build/soapdump $src/src/soapdump.cpp
'';
installPhase = ''