mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-29 09:04:17 +00:00
f9d6f67745
versitygw: update to correct license versitygw: update description versitygw: update
36 lines
818 B
Nix
36 lines
818 B
Nix
{
|
|
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";
|
|
};
|
|
}
|