prototool: init at 1.8.0 (#63887)

wip/yesman
Mario Rodas 5 years ago committed by Wael Nasreddine
parent e78e2cfc08
commit e117e6dd26
  1. 33
      pkgs/development/tools/prototool/default.nix
  2. 2
      pkgs/top-level/all-packages.nix

@ -0,0 +1,33 @@
{ lib, buildGoModule, fetchFromGitHub, makeWrapper, protobuf }:
buildGoModule rec {
pname = "prototool";
version = "1.8.0";
src = fetchFromGitHub {
owner = "uber";
repo = pname;
rev = "v${version}";
sha256 = "0m6g5p3jyf0ja5j9rqmw8mhipdqxk7rcxm0plmh65bxk1n22fzjc";
};
nativeBuildInputs = [ makeWrapper ];
modSha256 = "0l4nqb1c1lqqk70l9qwib1azavxlwghi2fv5siwrr5zw4jysz5ml";
postInstall = ''
wrapProgram "$out/bin/prototool" \
--prefix PROTOTOOL_PROTOC_BIN_PATH : "${protobuf}/bin/protoc" \
--prefix PROTOTOOL_PROTOC_WKT_PATH : "${protobuf}/include"
'';
subPackages = [ "cmd/prototool" ];
meta = with lib; {
homepage = "https://github.com/uber/prototool";
description = "Your Swiss Army Knife for Protocol Buffers";
maintainers = [ maintainers.marsam ];
license = licenses.mit;
platforms = platforms.unix;
};
}

@ -15896,6 +15896,8 @@ in
procdump = callPackage ../os-specific/linux/procdump { };
prototool = callPackage ../development/tools/prototool { };
qemu_kvm = lowPrio (qemu.override { hostCpuOnly = true; });
# See `xenPackages` source for explanations.

Loading…
Cancel
Save