Skip to content

Commit b67e598

Browse files
committed
fix(node-gateway): fix nix build
1 parent 390db4c commit b67e598

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

packaging/nix/grpc_server_reflection.nix

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# SPDX-FileCopyrightText: 2025 Institute for Automation of Complex Power Systems, RWTH Aachen University
22
# SPDX-License-Identifier: Apache-2.0
33
{
4+
lib,
45
stdenv,
56
fetchurl,
67
protobuf,
@@ -22,7 +23,7 @@ stdenv.mkDerivation {
2223
# Create a temporary build directory
2324
mkdir -p tmp
2425
ln -s $src tmp/reflection.proto
25-
26+
export LD_LIBRARY_PATH="${lib.makeLibraryPath [ protobuf grpc ]}:$LD_LIBRARY_PATH"
2627
# Generate code into build_tmp
2728
protoc --cpp_out=tmp \
2829
--grpc_out=tmp \

0 commit comments

Comments
 (0)