tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
opendbx: fix cross build
FliegendeWurst
10 months ago
d03c7ccb
52fa4abe
+7
1 changed file
expand all
collapse all
unified
split
pkgs
by-name
op
opendbx
package.nix
+7
pkgs/by-name/op/opendbx/package.nix
···
27
27
configureFlagsArray=(--with-backends="mysql pgsql sqlite3")
28
28
'';
29
29
30
30
+
configureFlags = [
31
31
+
# detection fails when cross-compiling
32
32
+
"ac_cv_func_malloc_0_nonnull=yes"
33
33
+
"ac_cv_func_realloc_0_nonnull=yes"
34
34
+
"ac_cv_func_strtod=yes"
35
35
+
];
36
36
+
30
37
buildInputs = [
31
38
readline
32
39
libmysqlclient