txtpbfmt: init at unstable-2022-06-08

This commit is contained in:
Aaron Jheng 2022-07-05 02:07:11 +00:00
parent 1d6059cbd5
commit 2abf031a47
No known key found for this signature in database
GPG key ID: F6A547A869D050A3
2 changed files with 28 additions and 0 deletions

View file

@ -0,0 +1,24 @@
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "txtpbfmt";
version = "unstable-2022-06-08";
src = fetchFromGitHub {
owner = "protocolbuffers";
repo = "txtpbfmt";
rev = "fc78c767cd6a4e6e3953f5d72f1e0e4c5811990b";
sha256 = "sha256-5Pj2REFrzWCzrqdplNlyfX+sJqPjXEld6MFNy0S3MFM=";
};
vendorSha256 = "sha256-shjcQ3DJQYeAW0bX3OuF/esgIvrQ4yuLEa677iFV82g=";
ldflags = [ "-s" "-w" ];
meta = with lib; {
description = "Formatter for text proto files";
homepage = "https://github.com/protocolbuffers/txtpbfmt";
license = licenses.asl20;
maintainers = with maintainers; [ aaronjheng ];
};
}

View file

@ -11318,6 +11318,10 @@ with pkgs;
ttylog = callPackage ../tools/misc/ttylog { };
txtpbfmt = callPackage ../development/tools/txtpbfmt {
buildGoModule = buildGo118Module;
};
ipbt = callPackage ../tools/misc/ipbt { };
tuhi = callPackage ../applications/misc/tuhi { };