xkbmon: depend on libxcb independently of libx11 propagating it

This commit is contained in:
quantenzitrone
2025-08-22 16:13:26 +02:00
committed by Alyssa Ross
parent 596f710ee3
commit 3d1033ce5c
+5 -1
View File
@@ -3,6 +3,7 @@
stdenv,
fetchFromGitHub,
libX11,
libxcb,
}:
stdenv.mkDerivation rec {
@@ -16,7 +17,10 @@ stdenv.mkDerivation rec {
sha256 = "sha256-EWW6L6NojzXodDOET01LMcQT8/1JIMpOD++MCiM3j1Y=";
};
buildInputs = [ libX11 ];
buildInputs = [
libX11
libxcb
];
installPhase = "install -D -t $out/bin xkbmon";