From 7e93214097680936848fde6be646a59fe436e1ab 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 0b6f303a..27b530de 100644 --- a/default.nix +++ b/default.nix @@ -23,6 +23,7 @@ pam, polkit, glib, + libsysprof-capture, gitRev ? (let headExists = builtins.pathExists ./.git/HEAD; @@ -81,7 +82,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";