My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/tools/goa/default.nix

26 lines
642 B

{ lib, buildGoPackage, fetchFromGitHub }:
buildGoPackage rec {
pname = "goa";
version = "1.4.1";
goPackagePath = "github.com/goadesign/goa";
subPackages = [ "goagen" ];
src = fetchFromGitHub {
owner = "goadesign";
repo = "goa";
rev = "v${version}";
sha256 = "0qcd4ii6arlpsivfdhcwidvnd8zbxxvf574jyxyvm1aazl8sqxj7";
};
goDeps = ./deps.nix;
meta = with lib; {
description = "A framework for building microservices in Go using a unique design-first approach";
homepage = "https://goa.design";
license = licenses.mit;
maintainers = [ maintainers.rushmorem ];
mainProgram = "goagen";
};
}