mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 19:21:04 +00:00
commit
5a1cc60609
|
@ -1,26 +1,26 @@
|
|||
{ lib, buildGoPackage, fetchFromGitHub }:
|
||||
{ lib
|
||||
, buildGoModule
|
||||
, fetchFromGitHub
|
||||
}:
|
||||
|
||||
buildGoPackage rec {
|
||||
buildGoModule rec {
|
||||
pname = "goa";
|
||||
version = "1.4.1";
|
||||
|
||||
goPackagePath = "github.com/goadesign/goa";
|
||||
subPackages = [ "goagen" ];
|
||||
version = "3.7.6";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "goadesign";
|
||||
repo = "goa";
|
||||
rev = "v${version}";
|
||||
sha256 = "0qcd4ii6arlpsivfdhcwidvnd8zbxxvf574jyxyvm1aazl8sqxj7";
|
||||
sha256 = "sha256-AxMt9XnpUvAwWtjh391ep+MFysF5I/HUeHS8Kq8/fvU=";
|
||||
};
|
||||
vendorSha256 = "sha256-eTMqvl7h12GbzEmO5Lo4hdFrbqti3zl9edTz+zS0Xu8=";
|
||||
|
||||
goDeps = ./deps.nix;
|
||||
subPackages = [ "cmd/goa" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "A framework for building microservices in Go using a unique design-first approach";
|
||||
description = "Design-based APIs and microservices in Go";
|
||||
homepage = "https://goa.design";
|
||||
license = licenses.mit;
|
||||
maintainers = [ maintainers.rushmorem ];
|
||||
mainProgram = "goagen";
|
||||
maintainers = with maintainers; [ rushmorem ];
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue