Merge pull request #176474 from azahi/goa

goa: 1.4.1 -> 3.7.6
This commit is contained in:
Anderson Torres 2022-06-05 21:12:08 -03:00 committed by GitHub
commit 5a1cc60609
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,26 +1,26 @@
{ lib, buildGoPackage, fetchFromGitHub }:
{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoPackage rec {
buildGoModule rec {
pname = "goa";
version = "1.4.1";
goPackagePath = "github.com/goadesign/goa";
subPackages = [ "goagen" ];
version = "3.7.6";
src = fetchFromGitHub {
owner = "goadesign";
repo = "goa";
rev = "v${version}";
sha256 = "0qcd4ii6arlpsivfdhcwidvnd8zbxxvf574jyxyvm1aazl8sqxj7";
sha256 = "sha256-AxMt9XnpUvAwWtjh391ep+MFysF5I/HUeHS8Kq8/fvU=";
};
vendorSha256 = "sha256-eTMqvl7h12GbzEmO5Lo4hdFrbqti3zl9edTz+zS0Xu8=";
goDeps = ./deps.nix;
subPackages = [ "cmd/goa" ];
meta = with lib; {
description = "A framework for building microservices in Go using a unique design-first approach";
description = "Design-based APIs and microservices in Go";
homepage = "https://goa.design";
license = licenses.mit;
maintainers = [ maintainers.rushmorem ];
mainProgram = "goagen";
maintainers = with maintainers; [ rushmorem ];
};
}