routino: move env vars into env for structuredAttrs

This commit is contained in:
Stefan Frijters 2026-02-19 17:30:29 +01:00
parent aa9895ef8f
commit 044366e19a
No known key found for this signature in database
GPG key ID: 7619A6BC6E7DFA6F

View file

@ -46,7 +46,9 @@ stdenv.mkDerivation (finalAttrs: {
"doc"
];
CLANG = lib.optionalString stdenv.cc.isClang "1";
env = lib.optionalAttrs stdenv.cc.isClang {
CLANG = "1";
};
makeFlags = [ "prefix=$(out)" ];