fake-gcs-server: init at 1.52.2

This commit is contained in:
commiterate
2025-03-02 13:17:23 -05:00
parent 451b0d33a7
commit de26325e05
@@ -0,0 +1,32 @@
{
lib,
buildGoModule,
fetchFromGitHub,
nix-update-script,
}:
buildGoModule rec {
pname = "fake-gcs-server";
version = "1.52.2";
src = fetchFromGitHub {
owner = "fsouza";
repo = "fake-gcs-server";
tag = "v${version}";
hash = "sha256-sidMCbJAK3bRGJyyFIUn7e5y0z4O72JWCICHf4JL4yo=";
};
vendorHash = "sha256-oTJ4DCsDazo58ozsAKI0BG7rxfF8oeiIl6vQpRng+LM=";
passthru = {
updateScript = nix-update-script { };
};
meta = {
description = "Google Cloud Storage emulator & testing library";
homepage = "https://github.com/fsouza/fake-gcs-server";
license = lib.licenses.bsd2;
mainProgram = "fake-gcs-server";
maintainers = with lib.maintainers; [ jpetrucciani ];
};
}