mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 08:36:41 +01:00
protoc-gen-doc: 1.5.0 -> 1.5.1
This commit is contained in:
parent
71417284ba
commit
1bb9bb5323
1 changed files with 4 additions and 6 deletions
|
@ -1,19 +1,17 @@
|
||||||
{ buildGoModule, fetchFromGitHub, lib }:
|
{ buildGoModule, fetchFromGitHub, lib }:
|
||||||
|
|
||||||
buildGoModule rec {
|
buildGoModule rec {
|
||||||
pname = "protoc-gen-doc-unstable";
|
pname = "protoc-gen-doc";
|
||||||
version = "1.5.0";
|
version = "1.5.1";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "pseudomuto";
|
owner = "pseudomuto";
|
||||||
repo = "protoc-gen-doc";
|
repo = "protoc-gen-doc";
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "1bpb5wv76p0sjffh5d1frbygp3q1p07sdh5c8pznl5bdh5pd7zxq";
|
sha256 = "sha256-19CN62AwqQGq5Gb5kQqVYhs+LKsJ9K2L0VAakwzPD5Y=";
|
||||||
};
|
};
|
||||||
|
|
||||||
vendorSha256 = "08pk9nxsl28dw3qmrlb7vsm8xbdzmx98qwkxgg93ykrhzx235k1b";
|
vendorSha256 = "sha256-K0rZBERSKob5ubZW28QpbcPhgFKOOASkd9UyC9f8gyQ=";
|
||||||
|
|
||||||
doCheck = false;
|
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Documentation generator plugin for Google Protocol Buffers";
|
description = "Documentation generator plugin for Google Protocol Buffers";
|
||||||
|
|
Loading…
Reference in a new issue