xorg.libxcb: add meta.pkgConfigModules annotation

This commit is contained in:
maralorn 2023-08-08 14:57:10 +02:00
parent ae7cc3b314
commit d85a512a38
No known key found for this signature in database

View File

@ -83,6 +83,34 @@ self: super:
configureFlags = [ "--enable-xkb" "--enable-xinput" ]
++ lib.optional stdenv.hostPlatform.isStatic "--disable-shared";
outputs = [ "out" "dev" "man" "doc" ];
meta = attrs.meta // {
pkgConfigModules = [
"xcb-composite"
"xcb-damage"
"xcb-dpms"
"xcb-dri2"
"xcb-dri3"
"xcb-glx"
"xcb-present"
"xcb-randr"
"xcb-record"
"xcb-render"
"xcb-res"
"xcb-screensaver"
"xcb-shape"
"xcb-shm"
"xcb-sync"
"xcb-xf86dri"
"xcb-xfixes"
"xcb-xinerama"
"xcb-xinput"
"xcb-xkb"
"xcb-xtest"
"xcb-xv"
"xcb-xvmc"
"xcb"
];
};
});
libX11 = super.libX11.overrideAttrs (attrs: {