a3d4720129
GitOrigin-RevId: e182da8622a354d44c39b3d7a542dc12cd7baa5f
25 lines
657 B
Nix
25 lines
657 B
Nix
{ buildGoModule, fetchFromGitHub, lib }:
|
|
|
|
buildGoModule rec {
|
|
pname = "go-swag";
|
|
version = "1.8.9";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "swaggo";
|
|
repo = "swag";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-8UnDrWZ0gQlhPQLDqA5DLBBeHqQFlNxK7+y4qlUk/fI=";
|
|
};
|
|
|
|
vendorSha256 = "sha256-iu4rSgB7Gu5n1Sgu0jU9QwdwvuZ5rAqysvKuBnJd2jQ=";
|
|
|
|
subPackages = [ "cmd/swag" ];
|
|
|
|
meta = with lib; {
|
|
description = "Automatically generate RESTful API documentation with Swagger 2.0 for Go";
|
|
homepage = "https://github.com/swaggo/swag";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ stephenwithph ];
|
|
mainProgram = "swag";
|
|
};
|
|
}
|