depot/third_party/nixpkgs/pkgs/development/tools/goa/default.nix
Default email 5e9e1146e1 Project import generated by Copybara.
GitOrigin-RevId: 18036c0be90f4e308ae3ebcab0e14aae0336fe42
2023-08-05 00:07:22 +02:00

26 lines
581 B
Nix

{ lib
, buildGoModule
, fetchFromGitHub
}:
buildGoModule rec {
pname = "goa";
version = "3.12.3";
src = fetchFromGitHub {
owner = "goadesign";
repo = "goa";
rev = "v${version}";
sha256 = "sha256-OWYIfzJcR0V5GogVntzu5hOe3h3JO5FYWxSqYSxRp6A=";
};
vendorHash = "sha256-Zt8Nzga9xRYuUv8ofCJa3yL2Kq+xvnqs3c0g2BnrgTo=";
subPackages = [ "cmd/goa" ];
meta = with lib; {
description = "Design-based APIs and microservices in Go";
homepage = "https://goa.design";
license = licenses.mit;
maintainers = with maintainers; [ rushmorem ];
};
}