cagebreak: add missing mesa dependency

This commit is contained in:
Gabriel Ebner 2021-04-09 10:45:22 +02:00
parent e32d94201c
commit 2da39dda3e

View file

@ -1,7 +1,7 @@
{ lib, stdenv, fetchFromGitHub { lib, stdenv, fetchFromGitHub
, meson, ninja, pkg-config, wayland, scdoc, makeWrapper , meson, ninja, pkg-config, wayland, scdoc, makeWrapper
, wlroots, wayland-protocols, pixman, libxkbcommon , wlroots, wayland-protocols, pixman, libxkbcommon
, cairo , pango, fontconfig, pandoc, systemd , cairo , pango, fontconfig, pandoc, systemd, mesa
, withXwayland ? true, xwayland , withXwayland ? true, xwayland
, nixosTests , nixosTests
}: }:
@ -22,6 +22,7 @@ stdenv.mkDerivation rec {
buildInputs = [ buildInputs = [
wlroots wayland wayland-protocols pixman libxkbcommon cairo wlroots wayland wayland-protocols pixman libxkbcommon cairo
pango fontconfig pandoc systemd pango fontconfig pandoc systemd
mesa # for libEGL headers
]; ];
outputs = [ "out" "contrib" ]; outputs = [ "out" "contrib" ];