update tool releases

This commit is contained in:
openclaw-ci 2026-05-08 16:16:44 +00:00
parent 0dea6487c4
commit 76225ee7e3

View File

@ -3,22 +3,22 @@
let let
sources = { sources = {
"aarch64-darwin" = { "aarch64-darwin" = {
url = "https://github.com/steipete/wacrawl/releases/download/v0.2.0/wacrawl_0.2.0_darwin_arm64.tar.gz"; url = "https://github.com/steipete/wacrawl/releases/download/v0.2.4/wacrawl_0.2.4_darwin_arm64.tar.gz";
hash = "sha256-Pk3G8ZBsZOSU9PNgtuJPzQC2XDe71yUSkPHXxqGL+vQ="; hash = "sha256-vn6GN8inl06EwYCRW0xlDJMaj3iFP82Dbdt5HpH/NMo=";
}; };
"x86_64-linux" = { "x86_64-linux" = {
url = "https://github.com/steipete/wacrawl/releases/download/v0.2.0/wacrawl_0.2.0_linux_amd64.tar.gz"; url = "https://github.com/steipete/wacrawl/releases/download/v0.2.4/wacrawl_0.2.4_linux_amd64.tar.gz";
hash = "sha256-xZBLpgzLG+3NClMwanZ2V79Qqw36acpT2MI5z3gfHoo="; hash = "sha256-kK4E24aJw4ItLK3lw3tsEbfcFe8OeR7/iOJlTInMRiA=";
}; };
"aarch64-linux" = { "aarch64-linux" = {
url = "https://github.com/steipete/wacrawl/releases/download/v0.2.0/wacrawl_0.2.0_linux_arm64.tar.gz"; url = "https://github.com/steipete/wacrawl/releases/download/v0.2.4/wacrawl_0.2.4_linux_arm64.tar.gz";
hash = "sha256-oiPgR7yWd5aYTYqlIZST89ELSdetW6nvTaE8rl78ZTc="; hash = "sha256-k033oRaYjGdU9JVdQn3yfjmxWw/UtSPsjRTisVGCsfs=";
}; };
}; };
in in
stdenv.mkDerivation { stdenv.mkDerivation {
pname = "wacrawl"; pname = "wacrawl";
version = "0.2.0"; version = "0.2.4";
src = fetchurl sources.${stdenv.hostPlatform.system}; src = fetchurl sources.${stdenv.hostPlatform.system};