Merge pull request #35226 from xeji/virglrenderer

virglrenderer: init at 0.6.0
This commit is contained in:
Franz Pletz 2018-03-04 18:11:47 +00:00 committed by GitHub
commit 612364732e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 28 additions and 0 deletions

View File

@ -0,0 +1,26 @@
{ stdenv, fetchurl, pkgconfig, mesa_noglu, epoxy, libX11 }:
stdenv.mkDerivation rec {
name = "virglrenderer-${version}";
version = "0.6.0";
src = fetchurl {
url = "https://www.freedesktop.org/software/virgl/${name}.tar.bz2";
sha256 = "a549e351e0eb2ad1df471386ddcf85f522e7202808d1616ee9ff894209066e1a";
};
buildInputs = [ mesa_noglu epoxy libX11 ];
nativeBuildInputs = [ pkgconfig ];
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 ];
};
}

View File

@ -20567,6 +20567,8 @@ with pkgs;
vips = callPackage ../tools/graphics/vips { };
nip2 = callPackage ../tools/graphics/nip2 { };
virglrenderer = callPackage ../development/libraries/virglrenderer { };
vokoscreen = libsForQt5.callPackage ../applications/video/vokoscreen { };
wavegain = callPackage ../applications/audio/wavegain { };