mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 00:12:56 +00:00
Merge pull request #98015 from StephenWithPH/swag
go-swag: init at 1.6.7
This commit is contained in:
commit
0dc4edcd60
@ -7995,6 +7995,12 @@
|
||||
githubId = 231788;
|
||||
name = "Stephen Weinberg";
|
||||
};
|
||||
stephenwithph = {
|
||||
name = "StephenWithPH";
|
||||
email = "StephenWithPH@users.noreply.github.com";
|
||||
github = "StephenWithPH";
|
||||
githubId = 2990492;
|
||||
};
|
||||
sterfield = {
|
||||
email = "sterfield@gmail.com";
|
||||
github = "sterfield";
|
||||
|
24
pkgs/development/tools/go-swag/default.nix
Normal file
24
pkgs/development/tools/go-swag/default.nix
Normal file
@ -0,0 +1,24 @@
|
||||
{ buildGoModule, fetchFromGitHub, lib }:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "go-swag";
|
||||
version = "1.6.7";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "swaggo";
|
||||
repo = "swag";
|
||||
rev = "df209afeed2334a97c83aff34ea7abcad85c31f6";
|
||||
sha256 = "17pmcfkcmgjvs4drs0fyhp2m39gw83s0ck3rdzdkgdhrbhva9ksx";
|
||||
};
|
||||
|
||||
vendorSha256 = "1i2n2sz2hc89nf2fqfq3swldz0xwrnms4j9q0lrss5gm3bk49q7f";
|
||||
|
||||
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 ];
|
||||
};
|
||||
}
|
@ -27371,6 +27371,8 @@ in
|
||||
|
||||
sqsh = callPackage ../development/tools/sqsh { };
|
||||
|
||||
go-swag = callPackage ../development/tools/go-swag { };
|
||||
|
||||
go-swagger = callPackage ../development/tools/go-swagger { };
|
||||
|
||||
jx = callPackage ../applications/networking/cluster/jx {};
|
||||
|
Loading…
Reference in New Issue
Block a user