lol
at 23.05-pre 24 lines 715 B view raw
1{ lib, buildGoModule, fetchFromGitHub }: 2 3buildGoModule rec { 4 pname = "protoscope"; 5 version = "unstable-2022-10-04"; 6 7 src = fetchFromGitHub { 8 owner = "protocolbuffers"; 9 repo = "protoscope"; 10 rev = "8b1d63939ee1a5d922b38f3976e1e58cae525163"; 11 sha256 = "sha256-/vt02rvKVsryJZ+Bw4QLaGzDErGI04/4NUbSBkbbN3Y="; 12 }; 13 14 vendorSha256 = "sha256-mK8eGo6oembs4nofvROn4g0+oO5E5/zQrmPKMe3xXik="; 15 16 ldflags = [ "-s" "-w" ]; 17 18 meta = with lib; { 19 description = "Simple, human-editable language for representing and emitting the Protobuf wire format"; 20 homepage = "https://github.com/protocolbuffers/protoscope"; 21 license = licenses.asl20; 22 maintainers = with maintainers; [ aaronjheng ]; 23 }; 24}