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

This commit is contained in:
Stefan Frijters
2026-02-17 12:43:28 +01:00
parent a320716ef4
commit 7294380213
+4 -2
View File
@@ -20,8 +20,10 @@ stdenv.mkDerivation (finalAttrs: {
openssl
];
PREFIX = "\${out}";
USE_SSL = 1;
env = {
PREFIX = "\${out}";
USE_SSL = 1;
};
meta = {
homepage = "https://github.com/redis/hiredis";