nixpkgs/pkgs/development/tools/go-swag/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
656 B
Nix
Raw Normal View History

2020-09-14 23:22:07 +00:00
{ buildGoModule, fetchFromGitHub, lib }:
buildGoModule rec {
pname = "go-swag";
2023-01-29 00:36:07 +00:00
version = "1.8.10";
2020-09-14 23:22:07 +00:00
src = fetchFromGitHub {
owner = "swaggo";
repo = "swag";
rev = "v${version}";
2023-01-29 00:36:07 +00:00
sha256 = "sha256-PDK1TI99/8hAuyK4NOb357WZG0JBno8er8HMfus5V7Q=";
2020-09-14 23:22:07 +00:00
};
2023-01-29 00:36:07 +00:00
vendorHash = "sha256-iu4rSgB7Gu5n1Sgu0jU9QwdwvuZ5rAqysvKuBnJd2jQ=";
2020-09-14 23:22:07 +00:00
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";
2020-09-14 23:22:07 +00:00
};
}