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:
Wael Nasreddine 2020-06-18 07:10:54 -07:00 committed by GitHub
parent 2a19cff668
commit 46db244d2d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 26 additions and 0 deletions

View File

@ -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 ];
};
}

View File

@ -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 { };