324aef5e82
I think I must have added this by mistake — it's not referenced in
either the release where I added it, or the current release.
Fixes: 14d6777962
("virglrenderer: 0.7.0 -> 0.8.1")
27 lines
828 B
Nix
27 lines
828 B
Nix
{ lib, stdenv, fetchurl, meson, ninja, pkg-config, python3
|
|
, libGLU, libepoxy, libX11, libdrm, mesa
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "virglrenderer";
|
|
version = "1.0.0";
|
|
|
|
src = fetchurl {
|
|
url = "https://gitlab.freedesktop.org/virgl/virglrenderer/-/archive/${version}/virglrenderer-${version}.tar.bz2";
|
|
hash = "sha256-KMGPP2MeuATHFXKr5oW9HuFOMmmYpmkVLvMvQi0cEdg=";
|
|
};
|
|
|
|
separateDebugInfo = true;
|
|
|
|
buildInputs = [ libGLU libepoxy libX11 libdrm mesa ];
|
|
|
|
nativeBuildInputs = [ meson ninja pkg-config python3 ];
|
|
|
|
meta = with 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 ];
|
|
};
|
|
}
|