From b18139ae906d98ea386e904771574814be9755bf Mon Sep 17 00:00:00 2001 From: Michael Livshin Date: Thu, 12 Feb 2026 12:25:39 +0200 Subject: [PATCH] nix: glib wants to drag in libsysprof-capture, so let it --- default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/default.nix b/default.nix index 59e68b05..6d05b721 100644 --- a/default.nix +++ b/default.nix @@ -26,6 +26,7 @@ pam, polkit, glib, + libsysprof-capture, gitRev ? (let headExists = builtins.pathExists ./.git/HEAD; @@ -91,7 +92,7 @@ ++ lib.optional withX11 xorg.libxcb ++ lib.optional withPam pam ++ lib.optional withPipewire pipewire - ++ lib.optionals withPolkit [ polkit glib ]; + ++ lib.optionals withPolkit [ polkit glib libsysprof-capture ]; cmakeBuildType = if debug then "Debug" else "RelWithDebInfo";