about summary refs log tree commit diff
path: root/pkgs/development/libraries/virglrenderer/default.nix
blob: 0d9abc0247e29e8f9f08658cabb0934a3fda6778 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{ stdenv, fetchurl, pkgconfig, libGLU, 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 = [ libGLU 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 ];
  };

}