lock: add glib to PATH for gdbus

This commit is contained in:
Damocles 2026-04-17 14:03:40 +02:00
parent 892b2dca48
commit 032035b7f1

View file

@ -5,6 +5,7 @@
quickshell,
qt6,
nova-stats,
glib,
}:
stdenvNoCC.mkDerivation {
pname = "nova-shell";
@ -34,7 +35,12 @@ stdenvNoCC.mkDerivation {
mkdir -p $out/bin
makeWrapper ${lib.getExe quickshell} $out/bin/nova-shell \
--add-flags "-p $out/share/nova-shell/shell.qml" \
--prefix PATH : ${lib.makeBinPath [ nova-stats ]}
--prefix PATH : ${
lib.makeBinPath [
nova-stats
glib
]
}
runHook postInstall
'';