mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 23:43:30 +00:00
35 lines
875 B
Nix
35 lines
875 B
Nix
{ lib, buildGoModule, fetchFromGitHub, makeWrapper, protobuf }:
|
|
|
|
buildGoModule rec {
|
|
pname = "prototool";
|
|
version = "1.10.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "uber";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
hash = "sha256-T6SjjyHC4j5du2P4Emcfq/ZFbuCpMPPJFJTHb/FNMAo=";
|
|
};
|
|
|
|
vendorHash = "sha256-W924cy6bd3V/ep3JmzUCV7iuYNukEetr90SKmLMH0j8=";
|
|
|
|
nativeBuildInputs = [ makeWrapper ];
|
|
|
|
doCheck = false;
|
|
|
|
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;
|
|
};
|
|
}
|