nixpkgs/pkgs/development/tools/txtpbfmt/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
645 B
Nix
Raw Normal View History

2022-07-05 02:07:11 +00:00
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule {
2022-07-05 02:07:11 +00:00
pname = "txtpbfmt";
version = "unstable-2023-10-25";
2022-07-05 02:07:11 +00:00
src = fetchFromGitHub {
owner = "protocolbuffers";
repo = "txtpbfmt";
rev = "084445ff1adf0d8a27429bba65dbde5663f02d26";
hash = "sha256-SoU1GON9avesty6FSZ+z6o2JHInUtwv+PVOzqCu+8L8=";
2022-07-05 02:07:11 +00:00
};
vendorHash = "sha256-IdD+R8plU4/e9fQaGSM5hJxyMECb6hED0Qg8afwHKbY=";
2022-07-05 02:07:11 +00:00
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 ];
};
}