File tree Expand file tree Collapse file tree 2 files changed +17
-0
lines changed Expand file tree Collapse file tree 2 files changed +17
-0
lines changed Original file line number Diff line number Diff line change 25
25
version = "3.10.11" ;
26
26
27
27
src = ./. ;
28
+ patches = [ ./nix/arrow.patch ] ;
28
29
29
30
postPatch = ''
30
31
substituteInPlace cmake/find_or_download_data_tamer.cmake \
100
101
pkgs . xorg . libxcb
101
102
pkgs . xorg . xcbutil
102
103
pkgs . xorg . xcbutilkeysyms
104
+ pkgs . arrow-cpp
103
105
] ;
104
106
dontWrapQtApps = true ;
105
107
129
131
pkgs . qt5 . qtsvg
130
132
pkgs . qt5 . qtimageformats
131
133
pkgs . qt5 . qtdeclarative
134
+ pkgs . arrow-cpp
132
135
pkgs . zeromq
133
136
pkgs . sqlite
134
137
pkgs . lua
Original file line number Diff line number Diff line change
1
+ diff --git a/plotjuggler_plugins/DataLoadParquet/CMakeLists.txt b/plotjuggler_plugins/DataLoadParquet/CMakeLists.txt
2
+ index cf101343..3368e555 100644
3
+ --- a/plotjuggler_plugins/DataLoadParquet/CMakeLists.txt
4
+ +++ b/plotjuggler_plugins/DataLoadParquet/CMakeLists.txt
5
+ @@ -11,8 +11,8 @@ if(Arrow_FOUND)
6
+ add_library(DataLoadParquet SHARED ${SRC} ${UI_SRC})
7
+
8
+ target_link_libraries(
9
+ - DataLoadParquet PRIVATE Qt5::Widgets Qt5::Xml Arrow::arrow_static
10
+ - Parquet::parquet_static plotjuggler_base)
11
+ + DataLoadParquet PRIVATE Qt5::Widgets Qt5::Xml Arrow::arrow_shared
12
+ + Parquet::parquet_shared plotjuggler_base)
13
+
14
+ target_compile_definitions(DataLoadParquet PRIVATE QT_PLUGIN)
You can’t perform that action at this time.
0 commit comments