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