kmscube: fix build

This commit is contained in:
Nikolay Amiantov 2018-03-28 16:24:46 +03:00
parent e47482ddfe
commit 82712d2d0b
1 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
{ stdenv, fetchgit, autoreconfHook, libdrm, libX11, libGL, pkgconfig }:
{ stdenv, fetchgit, autoreconfHook, libdrm, libX11, libGL, mesa_noglu, pkgconfig }:
stdenv.mkDerivation rec {
name = "kmscube-2017-03-19";
@ -10,7 +10,7 @@ stdenv.mkDerivation rec {
};
nativeBuildInputs = [ autoreconfHook pkgconfig ];
buildInputs = [ libdrm libX11 libGL ];
buildInputs = [ libdrm libX11 libGL mesa_noglu ];
meta = with stdenv.lib; {
description = "Example OpenGL app using KMS/GBM";