nixpkgs/pkgs/development/tools/goa/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
583 B
Nix
Raw Normal View History

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 {
pname = "goa";
2022-10-12 16:44:03 +00:00
version = "3.10.0";
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}";
2022-10-12 16:44:03 +00:00
sha256 = "sha256-Z/J1L6fYuim6LkVh+LDrr3FLTZO7uQwHXRg0YTofkWA=";
2016-09-16 14:24:51 +00:00
};
2022-10-12 16:44:03 +00:00
vendorSha256 = "sha256-r/1huS/6qqS6TuqPQkwqKuYwye5DYQWYfBS1IcXWRgk=";
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
meta = with lib; {
2022-06-05 21:14:29 +00:00
description = "Design-based APIs and microservices in Go";
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
};
}