fake-gcs-server: Switch from rec to finalAttrs.

This commit is contained in:
commiterate 2025-07-17 17:06:08 -04:00
parent e139aa6a2b
commit 60a18b5d4c

View File

@ -5,14 +5,14 @@
nix-update-script,
}:
buildGoModule rec {
buildGoModule (finalAttrs: {
pname = "fake-gcs-server";
version = "1.52.2";
src = fetchFromGitHub {
owner = "fsouza";
repo = "fake-gcs-server";
tag = "v${version}";
tag = "v${finalAttrs.version}";
hash = "sha256-sidMCbJAK3bRGJyyFIUn7e5y0z4O72JWCICHf4JL4yo=";
};
@ -34,4 +34,4 @@ buildGoModule rec {
mainProgram = "fake-gcs-server";
maintainers = with lib.maintainers; [ jpetrucciani ];
};
}
})