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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
583 B
Nix
Raw Normal View History

2021-05-11 13:46:57 +00:00
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "evans";
2022-08-28 10:18:12 +00:00
version = "0.10.9";
2021-05-11 13:46:57 +00:00
src = fetchFromGitHub {
owner = "ktr0731";
repo = pname;
rev = "v${version}";
2022-08-28 10:18:12 +00:00
sha256 = "sha256-Dim/8RXBMZTITGlT7F7TdAK9S2ct7w01861QqeT2FZk=";
2021-05-11 13:46:57 +00:00
};
subPackages = [ "." ];
2022-08-28 10:18:12 +00:00
vendorSha256 = "sha256-HcD7MnUBPevGDckiWitIcp0z97FJmW3D0f9SySdouq8=";
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 ];
};
}