protoc-gen-doc: fix build on darwin
This commit is contained in:
parent
dba5b006e2
commit
ce9ac41017
2 changed files with 7 additions and 3 deletions
|
@ -1,4 +1,4 @@
|
|||
{ buildGoModule, fetchFromGitHub, lib }:
|
||||
{ buildGoModule, fetchFromGitHub, stdenv, Security }:
|
||||
|
||||
buildGoModule {
|
||||
pname = "protoc-gen-doc-unstable";
|
||||
|
@ -13,7 +13,9 @@ buildGoModule {
|
|||
|
||||
modSha256 = "1952ycdkgl00q2s3qmhislhhim15nn6nmlkwbfdvrsfzznqj47rd";
|
||||
|
||||
meta = with lib; {
|
||||
buildInputs = stdenv.lib.optionals stdenv.isDarwin [ Security ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Documentation generator plugin for Google Protocol Buffers";
|
||||
longDescription = ''
|
||||
This is a documentation generator plugin for the Google Protocol Buffers
|
||||
|
|
|
@ -181,7 +181,9 @@ in
|
|||
inherit (darwin.apple_sdk.frameworks) Security;
|
||||
};
|
||||
|
||||
protoc-gen-doc = callPackage ../development/tools/protoc-gen-doc {};
|
||||
protoc-gen-doc = callPackage ../development/tools/protoc-gen-doc {
|
||||
inherit (darwin.apple_sdk.frameworks) Security;
|
||||
};
|
||||
|
||||
demoit = callPackage ../servers/demoit { };
|
||||
|
||||
|
|
Loading…
Reference in a new issue