versitygw: init at 1.0.8

versitygw: update to correct license

versitygw: update description

versitygw: update
This commit is contained in:
genga 2024-11-13 08:25:59 +03:00
parent 5763214382
commit f9d6f67745

View File

@ -0,0 +1,35 @@
{
lib,
fetchFromGitHub,
buildGoModule,
}:
buildGoModule rec {
pname = "versitygw";
version = "1.0.8";
src = fetchFromGitHub {
owner = "versity";
repo = "versitygw";
rev = "refs/tags/v${version}";
hash = "sha256-hrGPHl8vfLsL1JMcaU+RAQj6CaBJKsW+Q2AGCbgYUSA=";
};
vendorHash = "sha256-zZufxxZZ5Lfr0vWcygXdiRK+bhUr/+MFk4ajJGz5TMI=";
doCheck = false; # Require access to online S3 services
ldFlags = [
"-s"
"-w"
];
meta = {
description = "Versity S3 gateway, a high-performance S3 translation service";
homepage = "https://github.com/versity/versitygw";
changelog = "https://github.com/versity/versitygw/releases/tag/v${version}";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ genga898 ];
mainProgram = "versitygw";
};
}