chow-tape-model: move NIX_LDFLAGS into env for structuredAttrs

This commit is contained in:
Stefan Frijters
2026-02-01 22:26:23 +01:00
parent eac03580b6
commit 2c629505aa
+7 -9
View File
@@ -116,15 +116,13 @@ stdenv.mkDerivation (finalAttrs: {
# JUCE dlopens these, make sure they are in rpath
# Otherwise, segfault will happen
NIX_LDFLAGS = (
toString [
"-lX11"
"-lXext"
"-lXcursor"
"-lXinerama"
"-lXrandr"
]
);
env.NIX_LDFLAGS = toString [
"-lX11"
"-lXext"
"-lXcursor"
"-lXinerama"
"-lXrandr"
];
meta = {
homepage = "https://github.com/jatinchowdhury18/AnalogTapeModel";