go-swagger: init at 0.24.0 (#90682)
* go-swagger: init at 0.24.0 * Apply suggestions from code review Co-authored-by: Jon <jonringer@users.noreply.github.com> Co-authored-by: Jon <jonringer@users.noreply.github.com>
This commit is contained in:
parent
2a19cff668
commit
46db244d2d
|
@ -0,0 +1,24 @@
|
|||
{ buildGoModule, fetchFromGitHub, lib }:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "go-swagger";
|
||||
version = "0.24.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "go-swagger";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "051av25vnrcpvj9w6mqalwk7byw52m2dlh1m56y30xvm0ybbnayn";
|
||||
};
|
||||
|
||||
vendorSha256 = "020z4izc8i4yhbbr8h2fn8bqbis9q9yfcrjnixd6rsiayw1brh4p";
|
||||
|
||||
subPackages = [ "cmd/swagger" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Golang implementation of Swagger 2.0, representation of your RESTful API";
|
||||
homepage = "https://github.com/go-swagger/go-swagger";
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ kalbasit ];
|
||||
};
|
||||
}
|
|
@ -26294,6 +26294,8 @@ in
|
|||
|
||||
sqsh = callPackage ../development/tools/sqsh { };
|
||||
|
||||
go-swagger = callPackage ../development/tools/go-swagger { };
|
||||
|
||||
jx = callPackage ../applications/networking/cluster/jx {};
|
||||
|
||||
prow = callPackage ../applications/networking/cluster/prow { };
|
||||
|
|
Loading…
Reference in New Issue