Skip to content

Commit 3011e93

Browse files
committedSep 28, 2017
mesos: fix for different protobuf outputs vs master
1 parent 1f3087b commit 3011e93

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed
 

‎pkgs/applications/networking/cluster/mesos/default.nix

+3-3
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ in stdenv.mkDerivation rec {
6969
7070
substituteInPlace 3rdparty/stout/Makefile.am \
7171
--replace "-lprotobuf" \
72-
"${pythonProtobuf.protobuf}/lib/libprotobuf.a"
72+
"${pythonProtobuf.protobuf.lib}/lib/libprotobuf.a"
7373
7474
substituteInPlace 3rdparty/stout/include/stout/os/posix/fork.hpp \
7575
--subst-var-by sh ${bash}/bin/bash
@@ -97,7 +97,7 @@ in stdenv.mkDerivation rec {
9797
9898
substituteInPlace src/python/native_common/ext_modules.py.in \
9999
--replace "-lprotobuf" \
100-
"${pythonProtobuf.protobuf}/lib/libprotobuf.a"
100+
"${pythonProtobuf.protobuf.lib}/lib/libprotobuf.a"
101101
102102
substituteInPlace src/slave/containerizer/mesos/isolators/gpu/volume.cpp \
103103
--subst-var-by cp ${coreutils}/bin/cp \
@@ -122,7 +122,7 @@ in stdenv.mkDerivation rec {
122122
substituteInPlace src/Makefile.am \
123123
--subst-var-by mavenRepo ${mavenRepo} \
124124
--replace "-lprotobuf" \
125-
"${pythonProtobuf.protobuf}/lib/libprotobuf.a"
125+
"${pythonProtobuf.protobuf.lib}/lib/libprotobuf.a"
126126
127127
'' + lib.optionalString stdenv.isLinux ''
128128

0 commit comments

Comments
 (0)