File tree Expand file tree Collapse file tree
development/tools/go-swag Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ { buildGoModule , fetchFromGitHub , lib } :
2+
3+ buildGoModule rec {
4+ pname = "go-swag" ;
5+ version = "1.6.7" ;
6+
7+ src = fetchFromGitHub {
8+ owner = "swaggo" ;
9+ repo = "swag" ;
10+ rev = "df209afeed2334a97c83aff34ea7abcad85c31f6" ;
11+ sha256 = "17pmcfkcmgjvs4drs0fyhp2m39gw83s0ck3rdzdkgdhrbhva9ksx" ;
12+ } ;
13+
14+ vendorSha256 = "1i2n2sz2hc89nf2fqfq3swldz0xwrnms4j9q0lrss5gm3bk49q7f" ;
15+
16+ subPackages = [ "cmd/swag" ] ;
17+
18+ meta = with lib ; {
19+ description = "Automatically generate RESTful API documentation with Swagger 2.0 for Go" ;
20+ homepage = "https://github.com/swaggo/swag" ;
21+ license = licenses . mit ;
22+ maintainers = with maintainers ; [ stephenwithph ] ;
23+ } ;
24+ }
Original file line number Diff line number Diff line change @@ -27364,6 +27364,8 @@ in
2736427364
2736527365 sqsh = callPackage ../development/tools/sqsh { };
2736627366
27367+ go-swag = callPackage ../development/tools/go-swag { };
27368+
2736727369 go-swagger = callPackage ../development/tools/go-swagger { };
2736827370
2736927371 jx = callPackage ../applications/networking/cluster/jx {};
You can’t perform that action at this time.
0 commit comments