webmacs: pass custom stdenv to buildPythonApplication with an override

Passing `stdenv` directly to `buildPythonPackage` or `buildPythonApplication`
is deprecated with `oldestSupportedRelease = 2511`.
This commit is contained in:
Leona Maroni
2026-01-04 16:34:39 +01:00
parent 964df80fb9
commit 4abb28013c
@@ -7,9 +7,7 @@
herbstluftwm,
}:
mkDerivationWith python3Packages.buildPythonApplication rec {
inherit stdenv;
mkDerivationWith (python3Packages.buildPythonApplication.override { inherit stdenv; }) rec {
pname = "webmacs";
version = "0.8";
format = "setuptools";