From b11264dc4b3d3e11724c4fa9cc130434081a23d2 Mon Sep 17 00:00:00 2001 From: electria Date: Thu, 9 Jul 2026 20:16:33 -0700 Subject: [PATCH] build: zenity consistency --- flake.nix | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/flake.nix b/flake.nix index 8f401aa..e684327 100644 --- a/flake.nix +++ b/flake.nix @@ -85,10 +85,12 @@ ] ++ lib.optional pkgs.stdenv.hostPlatform.isLinux pkgs.makeBinaryWrapper; - buildInputs = commonArgs.buildInputs ++ [ - pkgs.libgcc - pkgs.zenity - ]; + buildInputs = + commonArgs.buildInputs + ++ [ + pkgs.libgcc + ] + ++ lib.optional pkgs.stdenv.hostPlatform.isLinux pkgs.zenity; runtimeDependencies = dlDeps;