From f1cfb160c4000561d8a968b58e079b2d726ca65a Mon Sep 17 00:00:00 2001 From: Ivan Folgueira Bande Date: Sun, 1 Feb 2026 17:45:32 +0100 Subject: [PATCH] add simple log configurePhase in default nix --- nix/default.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/nix/default.nix b/nix/default.nix index ea03472..c31f0a4 100644 --- a/nix/default.nix +++ b/nix/default.nix @@ -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 '';