From 3728f83e3627f2b8b6d4e09fdb1e7242166e303f Mon Sep 17 00:00:00 2001 From: Stefan Frijters Date: Thu, 19 Feb 2026 17:30:26 +0100 Subject: [PATCH] httpstat: move env vars into env for structuredAttrs --- pkgs/by-name/ht/httpstat/package.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/by-name/ht/httpstat/package.nix b/pkgs/by-name/ht/httpstat/package.nix index 4807cb9c716b..fc9382a891fe 100644 --- a/pkgs/by-name/ht/httpstat/package.nix +++ b/pkgs/by-name/ht/httpstat/package.nix @@ -23,7 +23,7 @@ python3Packages.buildPythonApplication (finalAttrs: { buildInputs = [ glibcLocales ]; runtimeDeps = [ curl ]; - LC_ALL = "en_US.UTF-8"; + env.LC_ALL = "en_US.UTF-8"; meta = { description = "Curl statistics made simple";