We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f4bf76a commit 50266c9Copy full SHA for 50266c9
flake.nix
@@ -68,6 +68,13 @@
68
# Add Go, git, and GNU Make
69
buildInputs = statusGo.library.buildInputs ++ [ pkgs.go pkgs.git pkgs.gnumake pkgs.protobuf ];
70
71
+ patchPhase = ''
72
+ echo "Patching sds Makefile to avoid network clone..."
73
+ substituteInPlace vendor/github.com/waku-org/sds-go-bindings/sds/Makefile \
74
+ --replace-warn "git clone https://github.com/waku-org/nim-sds" \
75
+ "cp -r ${pkgs.nim-sds} nim-sds"
76
+ '';
77
+
78
# Reuse buildPhase etc. if needed
79
inherit (statusGo.library) preBuild buildPhase installPhase;
80
};
0 commit comments