2021-05-11 14:46:57 +01:00
|
|
|
{ lib, buildGoModule, fetchFromGitHub }:
|
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "evans";
|
2021-07-25 07:46:08 +01:00
|
|
|
version = "0.10.0";
|
2021-05-11 14:46:57 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "ktr0731";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2021-07-25 07:46:08 +01:00
|
|
|
sha256 = "sha256-Ftt3lnwLk2Zx1DxDmZx2hBqXcxzqUb6I/gEdQJuFsCc=";
|
2021-05-11 14:46:57 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
subPackages = [ "." ];
|
|
|
|
|
2021-07-25 07:46:08 +01:00
|
|
|
vendorSha256 = "sha256-WclmINHcgRtbRSZGv+lOgwuImHKVC9cfK8C+f9JBcts=";
|
2021-05-11 14:46:57 +01:00
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "More expressive universal gRPC client";
|
|
|
|
homepage = "https://evans.syfm.me/";
|
|
|
|
license = with licenses; [ mit ];
|
|
|
|
maintainers = with maintainers; [ diogox ];
|
|
|
|
};
|
|
|
|
}
|