virglrenderer: init at 0.6.0
This commit is contained in:
parent
498374a8bd
commit
ffc014e9ed
26
pkgs/development/libraries/virglrenderer/default.nix
Normal file
26
pkgs/development/libraries/virglrenderer/default.nix
Normal 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 ];
|
||||||
|
};
|
||||||
|
|
||||||
|
}
|
@ -20559,6 +20559,8 @@ with pkgs;
|
|||||||
vips = callPackage ../tools/graphics/vips { };
|
vips = callPackage ../tools/graphics/vips { };
|
||||||
nip2 = callPackage ../tools/graphics/nip2 { };
|
nip2 = callPackage ../tools/graphics/nip2 { };
|
||||||
|
|
||||||
|
virglrenderer = callPackage ../development/libraries/virglrenderer { };
|
||||||
|
|
||||||
vokoscreen = libsForQt5.callPackage ../applications/video/vokoscreen { };
|
vokoscreen = libsForQt5.callPackage ../applications/video/vokoscreen { };
|
||||||
|
|
||||||
wavegain = callPackage ../applications/audio/wavegain { };
|
wavegain = callPackage ../applications/audio/wavegain { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user