2021-05-11 14:46:57 +01:00
|
|
|
{ lib, buildGoModule, fetchFromGitHub }:
|
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "evans";
|
2022-07-28 06:50:50 +01:00
|
|
|
version = "0.10.8";
|
2021-05-11 14:46:57 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "ktr0731";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2022-07-28 06:50:50 +01:00
|
|
|
sha256 = "sha256-2Fn+pPYknuQCofTNrgDbZ4A6C5hazSqKqlUOUG10ekU=";
|
2021-05-11 14:46:57 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
subPackages = [ "." ];
|
|
|
|
|
2022-07-28 06:50:50 +01:00
|
|
|
vendorSha256 = "sha256-IxlzSzFEIIBC32S7u1Lkbi/fOxFYlbockNAfl/tnJpA=";
|
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 ];
|
|
|
|
};
|
|
|
|
}
|