lc3tools: move env variable(s) into env for structuredAttrs

This commit is contained in:
Stefan Frijters
2026-02-12 11:16:34 +01:00
parent 6ef37e78f8
commit 3d2328c2e9
+6 -4
View File
@@ -41,10 +41,12 @@ stdenv.mkDerivation {
readline
];
# lumetta published this a while ago but handrolled his configure
# jank in the original packaging makes this necessary:
LIBS = "${flex}/lib:${ncurses}/lib:${readline}/lib";
INCLUDES = "${flex}/include:${ncurses}/include:${readline}/include";
env = {
# lumetta published this a while ago but handrolled his configure
# jank in the original packaging makes this necessary:
LIBS = "${flex}/lib:${ncurses}/lib:${readline}/lib";
INCLUDES = "${flex}/include:${ncurses}/include:${readline}/include";
};
# it doesn't take `--prefix`
prefixKey = "--installdir ";