mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-02 03:43:06 +00:00
27 lines
583 B
Nix
27 lines
583 B
Nix
{ lib
|
|
, buildGoModule
|
|
, fetchFromGitHub
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "goa";
|
|
version = "3.10.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "goadesign";
|
|
repo = "goa";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-Z/J1L6fYuim6LkVh+LDrr3FLTZO7uQwHXRg0YTofkWA=";
|
|
};
|
|
vendorSha256 = "sha256-r/1huS/6qqS6TuqPQkwqKuYwye5DYQWYfBS1IcXWRgk=";
|
|
|
|
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 ];
|
|
};
|
|
}
|