asciijump: move NIX_CFLAGS_COMPILE into env for structuredAttrs

This commit is contained in:
Stefan Frijters
2026-03-22 23:03:08 +01:00
parent 07f665ea0f
commit 6bfef7d6c8
+3 -1
View File
@@ -28,7 +28,9 @@ stdenv.mkDerivation (finalAttrs: {
strictDeps = true;
enableParallelBuilding = true;
NIX_CFLAGS_COMPILE = [ "-fsigned-char" ];
env.NIX_CFLAGS_COMPILE = toString [
"-fsigned-char"
];
nativeBuildInputs = [ ctags ];
buildInputs = [ slang ];