From 4a772837f9fae36f647817f7103bdce9a6521d86 Mon Sep 17 00:00:00 2001 From: Celes Renata Date: Fri, 8 May 2026 15:56:46 -0700 Subject: [PATCH] fix: escape bash variable in Nix string interpolation --- modules/python-environment.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/python-environment.nix b/modules/python-environment.nix index abc5d13..71bcc19 100644 --- a/modules/python-environment.nix +++ b/modules/python-environment.nix @@ -64,7 +64,7 @@ let # Set wayland protocol path for pywayland export PKG_CONFIG_PATH="${pkgs.wayland.dev}/lib/pkgconfig:${pkgs.wayland-protocols}/share/pkgconfig:${pkgs.wayland-scanner.dev}/lib/pkgconfig" export WAYLAND_PROTOCOLS_DIR="${pkgs.wayland-scanner}/share/wayland" - export C_INCLUDE_PATH="${pkgs.wayland.dev}/include:${C_INCLUDE_PATH:-}" + export C_INCLUDE_PATH="${pkgs.wayland.dev}/include:$C_INCLUDE_PATH" export PATH="${pkgs.wayland-scanner}/bin:$PATH" # Upgrade pip first