picoclaw: 0.2.1 -> 0.2.9 (#506542)

This commit is contained in:
Peder Bergebakken Sundt
2026-06-11 18:10:48 +00:00
committed by GitHub
+9 -4
View File
@@ -2,22 +2,25 @@
lib,
buildGoModule,
fetchFromGitHub,
olm,
versionCheckHook,
}:
buildGoModule (finalAttrs: {
pname = "picoclaw";
version = "0.2.1";
version = "0.2.9";
src = fetchFromGitHub {
owner = "sipeed";
repo = "picoclaw";
tag = "v${finalAttrs.version}";
hash = "sha256-JvcvpaGPPBiABK28rQhe63chYm7MRdfU6uflZosNRKg=";
hash = "sha256-oMees7EKANS5dkMHIqAHfGcumrNMtTEEA+dmpl8/dLE=";
};
proxyVendor = true;
vendorHash = "sha256-K9LssS1Hff19dv6oa8EaFOUZIRnOtAqC5jgnY5HuWTk=";
vendorHash = "sha256-LjTLLeK2M8W34z1M11wKuBAoDI6ciCG3f4FRWAre/sY=";
buildInputs = [ olm ];
preBuild = ''
go generate ./...
@@ -26,7 +29,7 @@ buildGoModule (finalAttrs: {
ldflags = [
"-s"
"-w"
"-X github.com/sipeed/picoclaw/cmd/picoclaw/internal.version=${finalAttrs.version}"
"-X github.com/sipeed/picoclaw/pkg/config.Version=${finalAttrs.version}"
];
doInstallCheck = true;
@@ -40,6 +43,8 @@ buildGoModule (finalAttrs: {
"TestCodexCliProvider_MockCLI_Success"
"TestCodexCliProvider_MockCLI_Error"
"TestCodexCliProvider_MockCLI_WithModel"
"TestGatewayStopRefusesNonGatewayAttachedProcess"
"TestGatewayStatusIgnoresAndRemovesPidFileForNonGatewayProcess"
];
in
[ "-skip=^${builtins.concatStringsSep "$|^" skippedTests}$" ];