1{ lib
2, buildGoModule
3, fetchFromGitHub
4}:
5
6buildGoModule rec {
7 pname = "goa";
8 version = "3.10.0";
9
10 src = fetchFromGitHub {
11 owner = "goadesign";
12 repo = "goa";
13 rev = "v${version}";
14 sha256 = "sha256-Z/J1L6fYuim6LkVh+LDrr3FLTZO7uQwHXRg0YTofkWA=";
15 };
16 vendorSha256 = "sha256-r/1huS/6qqS6TuqPQkwqKuYwye5DYQWYfBS1IcXWRgk=";
17
18 subPackages = [ "cmd/goa" ];
19
20 meta = with lib; {
21 description = "Design-based APIs and microservices in Go";
22 homepage = "https://goa.design";
23 license = licenses.mit;
24 maintainers = with maintainers; [ rushmorem ];
25 };
26}