zrythm: move NIX_LDFLAGS into env for structuredAttrs

This commit is contained in:
Stefan Frijters
2026-02-08 22:39:51 +01:00
parent d072efb750
commit b82b664ff7
+7 -4
View File
@@ -178,11 +178,14 @@ stdenv.mkDerivation (finalAttrs: {
# "-Duser_manual=true" # needs sphinx-intl
];
NIX_LDFLAGS = ''
-lfftw3_threads -lfftw3f_threads
'';
env = {
NIX_LDFLAGS = toString [
"-lfftw3_threads"
"-lfftw3f_threads"
];
GUILE_AUTO_COMPILE = 0;
GUILE_AUTO_COMPILE = 0;
};
dontStrip = true;