lol
at 23.05-pre 24 lines 583 B view raw
1{ lib, buildGoModule, fetchFromGitHub }: 2 3buildGoModule rec { 4 pname = "evans"; 5 version = "0.10.9"; 6 7 src = fetchFromGitHub { 8 owner = "ktr0731"; 9 repo = pname; 10 rev = "v${version}"; 11 sha256 = "sha256-Dim/8RXBMZTITGlT7F7TdAK9S2ct7w01861QqeT2FZk="; 12 }; 13 14 subPackages = [ "." ]; 15 16 vendorSha256 = "sha256-HcD7MnUBPevGDckiWitIcp0z97FJmW3D0f9SySdouq8="; 17 18 meta = with lib; { 19 description = "More expressive universal gRPC client"; 20 homepage = "https://evans.syfm.me/"; 21 license = with licenses; [ mit ]; 22 maintainers = with maintainers; [ diogox ]; 23 }; 24}