libepoxy: propagate buildInputs

Some packages that depend on libepoxy fail to build due to libGL and
libX11 not being present during the build. One example is `qemu_xen`
(or really any QEMU built with GL support), as it's built with libepoxy,
which links against libGL, but since libGL isn't present, the build fails.

Signed-off-by: Fernando Rodrigues <alpha@sigmasquadron.net>
This commit is contained in:
Fernando Rodrigues
2025-05-01 19:35:24 -03:00
parent cea4b1dd59
commit f1376ca33b
+1 -1
View File
@@ -55,7 +55,7 @@ stdenv.mkDerivation (finalAttrs: {
python3
];
buildInputs =
propagatedBuildInputs =
lib.optionals (x11Support && !stdenv.hostPlatform.isDarwin) [
libGL
]