2022-06-05 21:14:29 +00:00
|
|
|
{ lib
|
|
|
|
, buildGoModule
|
|
|
|
, fetchFromGitHub
|
|
|
|
}:
|
2016-09-16 14:24:51 +00:00
|
|
|
|
2022-06-05 21:14:29 +00:00
|
|
|
buildGoModule rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "goa";
|
2023-07-08 23:34:30 +00:00
|
|
|
version = "3.12.1";
|
2016-09-16 14:24:51 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "goadesign";
|
|
|
|
repo = "goa";
|
2018-08-09 22:06:42 +00:00
|
|
|
rev = "v${version}";
|
2023-07-08 23:34:30 +00:00
|
|
|
sha256 = "sha256-cQyBPg+3Sf2ABjRv3n9dVgMvhUpndNPUnOsRS4a+ABw=";
|
2016-09-16 14:24:51 +00:00
|
|
|
};
|
2023-07-08 23:34:30 +00:00
|
|
|
vendorHash = "sha256-XQyE99o6notsinQv39JbxW0XG3FqlMoDfDJQ72U5GTA=";
|
2016-09-16 14:24:51 +00:00
|
|
|
|
2022-06-05 21:14:29 +00:00
|
|
|
subPackages = [ "cmd/goa" ];
|
2016-09-16 14:24:51 +00:00
|
|
|
|
2021-01-23 12:26:19 +00:00
|
|
|
meta = with lib; {
|
2022-06-05 21:14:29 +00:00
|
|
|
description = "Design-based APIs and microservices in Go";
|
2022-05-05 00:46:39 +00:00
|
|
|
homepage = "https://goa.design";
|
2016-09-16 14:24:51 +00:00
|
|
|
license = licenses.mit;
|
2022-06-05 21:14:29 +00:00
|
|
|
maintainers = with maintainers; [ rushmorem ];
|
2016-09-16 14:24:51 +00:00
|
|
|
};
|
|
|
|
}
|