From 49ecff0fec9e15108d76b560fcdedfe25bd63b4e Mon Sep 17 00:00:00 2001 From: Harald Hoyer Date: Tue, 1 Apr 2025 08:48:22 +0200 Subject: [PATCH] chore(goose): update package version and source details - Updated the version from 1.0.16 to 1.0.16-1. - Replaced GitHub tag with a specific revision for better precision. - Updated cargo and source hashes to match the new revision. --- overlays/unstable/goose.nix | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/overlays/unstable/goose.nix b/overlays/unstable/goose.nix index 2b0e759..8056930 100644 --- a/overlays/unstable/goose.nix +++ b/overlays/unstable/goose.nix @@ -25,17 +25,18 @@ let in rustPlatform.buildRustPackage rec { pname = "goose-cli"; - version = "1.0.16"; + version = "1.0.16-1"; src = fetchFromGitHub { owner = "block"; repo = "goose"; - tag = "v${version}"; - hash = "sha256-fwywPX+tmfECno7x7cCExc2SoASZ6XzOzaVciMBkiBk="; + #tag = "v${version}"; + rev = "e7ad230957053dac7643701a69439ac19d5d2bf6"; + hash = "sha256-328lLQeZClZI/mKFLvUppdZLjYwwiMR6WmS2ZroZxLU="; }; useFetchCargoVendor = true; - cargoHash = "sha256-Gu+mMFzOkswTbm1AygkaZynW7c+9vHZHTMFUNMWWiEg="; + cargoHash = "sha256-hcIbwNDagH5pajHrJxp+qJscLRHKr3SAFkNPr4NwtBc="; nativeBuildInputs = [ pkg-config ];