goa: 1.4.1 -> 3.7.6

This commit is contained in:
Azat Bahawi 2022-06-06 00:14:29 +03:00
parent 2d012163f2
commit d36bc45d47
No known key found for this signature in database
GPG Key ID: C8C6BDDB3847F72B

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