32 lines
852 B
Nix
32 lines
852 B
Nix
{ stdenv, fetchurl, pkgconfig, libGLU, epoxy, libX11, libdrm, mesa_noglu }:
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "virglrenderer-${version}";
|
|
version = "0.7.0";
|
|
|
|
src = fetchurl {
|
|
url = "https://www.freedesktop.org/software/virgl/${name}.tar.bz2";
|
|
sha256 = "041agg1d6i8hg250y30f08n3via0hs9rbijxdrfifb8ara805v0m";
|
|
};
|
|
|
|
buildInputs = [ libGLU epoxy libX11 libdrm mesa_noglu ];
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
|
|
# Fix use of fd_set without proper include
|
|
prePatch = ''
|
|
sed -e '1i#include <sys/select.h>' -i vtest/util.c
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "A virtual 3D GPU library that allows a qemu guest to use the host GPU for accelerated 3D rendering";
|
|
homepage = https://virgil3d.github.io/;
|
|
license = licenses.mit;
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.xeji ];
|
|
};
|
|
|
|
}
|