9bb3fccb5b
continuation of #109595 pkgconfig was aliased in 2018, however, it remained in all-packages.nix due to its wide usage. This cleans up the remaining references to pkgs.pkgsconfig and moves the entry to aliases.nix. python3Packages.pkgconfig remained unchanged because it's the canonical name of the upstream package on pypi.
28 lines
872 B
Nix
28 lines
872 B
Nix
{ stdenv, fetchurl, cmake, meson, ninja, pkg-config, python3
|
|
, libGLU, epoxy, libX11, libdrm, mesa
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "virglrenderer";
|
|
version = "0.8.2";
|
|
|
|
src = fetchurl {
|
|
url = "https://gitlab.freedesktop.org/virgl/virglrenderer/-/archive/virglrenderer-${version}/virglrenderer-virglrenderer-${version}.tar.bz2";
|
|
sha256 = "07vfzg99wq92yg2phza9jc0zvps34yy9gc8v4hibqchdl77fmspx";
|
|
};
|
|
|
|
buildInputs = [ libGLU epoxy libX11 libdrm mesa ];
|
|
|
|
nativeBuildInputs = [ cmake meson ninja pkg-config python3 ];
|
|
|
|
dontUseCmakeConfigure = true;
|
|
|
|
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 ];
|
|
};
|
|
}
|