chore(goose): bump version to 1.0.20

Update goose package to version 1.0.20 and adjust related hashes accordingly. Also, add a new test to skip list to address runtime issues with the text editor functionality.
This commit is contained in:
Harald Hoyer 2025-05-02 10:38:53 +02:00
parent 8202aad70f
commit 1d9f500d52

View file

@ -12,7 +12,7 @@
,
}:
let
version = "1.0.18";
version = "1.0.20";
gpt-4o-tokenizer = fetchurl {
url = "https://huggingface.co/Xenova/gpt-4o/resolve/31376962e96831b948abe05d420160d0793a65a4/tokenizer.json";
hash = "sha256-Q6OtRhimqTj4wmFBVOoQwxrVOmLVaDrgsOYTNXXO8H4=";
@ -33,11 +33,11 @@ rustPlatform.buildRustPackage rec {
repo = "goose";
tag = "v${version}";
#rev = "167ac0efdc372ddbc80273c44d8497eafe0a901e";
hash = "sha256-SCQxr1C02VdnI2rKrLvmuB2U1Ynu9IUoyISrTcmgcB8=";
hash = "sha256-lUMqfIVZI+EN/Ys3eNPnPPprB1spanN7RZT6nhuwuHY=";
};
useFetchCargoVendor = true;
cargoHash = "sha256-vLXMBRY/7W9NMXs5qxe5cbDmehitmvrEBbMV0ZAVKrA=";
cargoHash = "sha256-5Aed0w7VpzPcaFIR0+iA3VCaln/VAU4VDBqDwVBBhR4=";
nativeBuildInputs = [ pkg-config ];
@ -67,6 +67,7 @@ rustPlatform.buildRustPackage rec {
# Lazy instance has previously been poisoned
"--skip=jetbrains::tests::test_capabilities"
"--skip=jetbrains::tests::test_router_creation"
"--skip=developer::tests::test_text_editor_write_and_view_file"
];
passthru.updateScript = nix-update-script { };