xorg.libXpresent: add xorg.libXfixes to propagated build inputs

Without it the `mpv` build fails as:

    ...-libXpresent-1.0.1/include/X11/extensions/Xpresent.h:31:10: fatal error: X11/extensions/Xfixes.h: No such file or directory
       31 | #include <X11/extensions/Xfixes.h>
          |          ^~~~~~~~~~~~~~~~~~~~~~~~~
This commit is contained in:
Sergei Trofimovich
2024-06-29 22:20:15 +01:00
parent 3bb3e89f3b
commit b68ce27a3f
+1
View File
@@ -397,6 +397,7 @@ self: super:
libXpresent = super.libXpresent.overrideAttrs (attrs: {
buildInputs = with xorg; attrs.buildInputs ++ [ libXext libXfixes libXrandr ];
propagatedBuildInputs = attrs.propagatedBuildInputs or [] ++ [ xorg.libXfixes ];
});
libxkbfile = super.libxkbfile.overrideAttrs (attrs: {