We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 390db4c commit b67e598Copy full SHA for b67e598
1 file changed
packaging/nix/grpc_server_reflection.nix
@@ -1,6 +1,7 @@
1
# SPDX-FileCopyrightText: 2025 Institute for Automation of Complex Power Systems, RWTH Aachen University
2
# SPDX-License-Identifier: Apache-2.0
3
{
4
+ lib,
5
stdenv,
6
fetchurl,
7
protobuf,
@@ -22,7 +23,7 @@ stdenv.mkDerivation {
22
23
# Create a temporary build directory
24
mkdir -p tmp
25
ln -s $src tmp/reflection.proto
-
26
+ export LD_LIBRARY_PATH="${lib.makeLibraryPath [ protobuf grpc ]}:$LD_LIBRARY_PATH"
27
# Generate code into build_tmp
28
protoc --cpp_out=tmp \
29
--grpc_out=tmp \
0 commit comments