mutter: Fix gdctl shebang

It requires python with pygobject, and, optionally, argcomplete, for bash completion to work.
This commit is contained in:
Jan Tojnar
2025-05-08 16:56:47 +02:00
parent f98d242271
commit ca2278160f

View File

@@ -173,6 +173,12 @@ stdenv.mkDerivation (finalAttrs: {
libXrandr
libXinerama
libXau
# for gdctl shebang
(python3.withPackages (pp: [
pp.pygobject3
pp.argcomplete
]))
];
postPatch = ''