add simple log configurePhase in default nix

This commit is contained in:
Ivan Folgueira Bande 2026-02-01 17:45:32 +01:00
parent a48beb9220
commit f1cfb160c4
No known key found for this signature in database
GPG Key ID: 3C117481F89E24A7

View File

@ -58,6 +58,10 @@ in stdenv.mkDerivation rec {
"USE_SYSTEM_NIM=1"
];
configurePhase = ''
echo "Skipping configure phase (no CMake / submodules)"
'';
preBuild = ''
ln -s sds.nimble sds.nims
'';