Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 24.05-beta 23 lines 620 B view raw
1{ lib, buildGoModule, fetchFromGitHub }: 2 3buildGoModule rec { 4 pname = "grpc-client-cli"; 5 version = "1.20.2"; 6 7 src = fetchFromGitHub { 8 owner = "vadimi"; 9 repo = "grpc-client-cli"; 10 rev = "v${version}"; 11 sha256 = "sha256-CD+p/Au+MVOV93VPQL2uD8DNKl3XfoJhOjdKcx8DFwQ="; 12 }; 13 14 vendorHash = "sha256-e8lz7IrGjx7oXLuNuIhwHW2IP4jfR9XB4HVDjpeH7/w="; 15 16 meta = with lib; { 17 description = "generic gRPC command line client"; 18 mainProgram = "grpc-client-cli"; 19 maintainers = with maintainers; [ Philipp-M ]; 20 homepage = "https://github.com/vadimi/grpc-client-cli"; 21 license = licenses.mit; 22 }; 23}