mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-30 02:42:59 +00:00
755b915a15
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
28 lines
734 B
Nix
28 lines
734 B
Nix
{ buildGoModule
|
|
, fetchFromGitHub
|
|
, lib
|
|
}:
|
|
buildGoModule rec {
|
|
pname = "protoc-gen-go-vtproto";
|
|
version = "0.6.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "planetscale";
|
|
repo = "vtprotobuf";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-ji6elc0hN49A4Ov/ckd8chPR4/8ZX11THzVz9HJGui4=";
|
|
};
|
|
|
|
vendorHash = "sha256-UMOEePOtOtmm9ShQy5LXcEUTv8/SIG9dU7/9vLhrBxQ=";
|
|
|
|
excludedPackages = [ "conformance" ];
|
|
|
|
meta = with lib; {
|
|
description = "Protocol Buffers compiler that generates optimized marshaling & unmarshaling Go code for ProtoBuf APIv2";
|
|
mainProgram = "protoc-gen-go-vtproto";
|
|
homepage = "https://github.com/planetscale/vtprotobuf";
|
|
license = licenses.bsd3;
|
|
maintainers = [ maintainers.zane ];
|
|
};
|
|
}
|