mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-06 04:53:27 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
43 lines
1.2 KiB
Nix
43 lines
1.2 KiB
Nix
{ lib, stdenv, fetchurl, meson, ninja, pkg-config, python3
|
|
, libGLU, libepoxy, libX11, libdrm, mesa
|
|
, vaapiSupport ? true, libva
|
|
, gitUpdater
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "virglrenderer";
|
|
version = "1.1.0";
|
|
|
|
src = fetchurl {
|
|
url = "https://gitlab.freedesktop.org/virgl/virglrenderer/-/archive/${version}/virglrenderer-${version}.tar.bz2";
|
|
hash = "sha256-XGgKst7ENLKCUv0jU/HiEtTYe+7b9sHnSufj0PZVsb0=";
|
|
};
|
|
|
|
separateDebugInfo = true;
|
|
|
|
buildInputs = [ libGLU libepoxy libX11 libdrm mesa ]
|
|
++ lib.optionals vaapiSupport [ libva ];
|
|
|
|
nativeBuildInputs = [ meson ninja pkg-config python3 ];
|
|
|
|
mesonFlags= [
|
|
(lib.mesonBool "video" vaapiSupport)
|
|
];
|
|
|
|
passthru = {
|
|
updateScript = gitUpdater {
|
|
url = "https://gitlab.freedesktop.org/virgl/virglrenderer.git";
|
|
rev-prefix = "virglrenderer-";
|
|
};
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Virtual 3D GPU library that allows a qemu guest to use the host GPU for accelerated 3D rendering";
|
|
mainProgram = "virgl_test_server";
|
|
homepage = "https://virgil3d.github.io/";
|
|
license = licenses.mit;
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.xeji ];
|
|
};
|
|
}
|