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

25 lines
583 B
Nix
Raw Normal View History

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