tora: move NIX_LDFLAGS into env for structuredAttrs

This commit is contained in:
Stefan Frijters
2026-02-08 22:39:51 +01:00
parent b82b664ff7
commit fa4d1c121f
+7 -1
View File
@@ -70,7 +70,13 @@ stdenv.mkDerivation {
];
# these libraries are only searched for at runtime so we need to force-link them
NIX_LDFLAGS = "-lgvc -lmysqlclient -lecpg -lssl -L${libmysqlclient}/lib/mariadb";
env.NIX_LDFLAGS = toString [
"-lgvc"
"-lmysqlclient"
"-lecpg"
"-lssl"
"-L${libmysqlclient}/lib/mariadb"
];
qtWrapperArgs = [
"--prefix PATH : ${lib.getBin graphviz}/bin"