3
0
Fork 0
forked from mirrors/nixpkgs

virglrenderer: add libdrm as dependency

This commit is contained in:
Nikolay Amiantov 2018-03-17 19:14:44 +03:00
parent d61e6c5ed7
commit 1e35a9cc06

View file

@ -1,4 +1,4 @@
{ stdenv, fetchurl, pkgconfig, libGLU, epoxy, libX11 }:
{ stdenv, fetchurl, pkgconfig, libGLU, epoxy, libX11, libdrm, mesa_noglu }:
stdenv.mkDerivation rec {
@ -11,7 +11,7 @@ stdenv.mkDerivation rec {
sha256 = "a549e351e0eb2ad1df471386ddcf85f522e7202808d1616ee9ff894209066e1a";
};
buildInputs = [ libGLU epoxy libX11 ];
buildInputs = [ libGLU epoxy libX11 libdrm mesa_noglu ];
nativeBuildInputs = [ pkgconfig ];