mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-29 02:13:23 +00:00
f9723bc4de
mesa.drivers is basically an implementation detail and should never be used as a dependency of other expressions. It also no longer exists on Darwin. mesa.osmesa is very niche and should generally be avoided. mesa.libdrm is used in exactly one place and it's irrelevant there.
53 lines
1.3 KiB
Nix
53 lines
1.3 KiB
Nix
{ stdenv
|
|
, lib
|
|
, fetchFromGitHub
|
|
, autoreconfHook
|
|
, libX11
|
|
, pkg-config
|
|
, libXext
|
|
, libdrm
|
|
, libXfixes
|
|
, wayland
|
|
, wayland-scanner
|
|
, libffi
|
|
, libGL
|
|
, mesa
|
|
, minimal ? false
|
|
, libva1-minimal
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "libva" + lib.optionalString minimal "-minimal";
|
|
# nixpkgs-update: no auto update
|
|
version = "1.8.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "intel";
|
|
repo = "libva";
|
|
rev = version;
|
|
sha256 = "sha256-ur59cqdZqXIY2dDUSie9XsxyRomVBxIW2IVKAgWYC38=";
|
|
};
|
|
|
|
outputs = [ "dev" "out" ];
|
|
|
|
nativeBuildInputs = [ autoreconfHook pkg-config wayland-scanner ];
|
|
|
|
buildInputs = [ libdrm ]
|
|
++ lib.optionals (!minimal) [ libva1-minimal libX11 libXext libXfixes wayland libffi libGL ];
|
|
# TODO: share libs between minimal and !minimal - perhaps just symlink them
|
|
|
|
# Add FHS paths for non-NixOS applications.
|
|
configureFlags = lib.optionals stdenv.isLinux [ "--with-drivers-path=${mesa.driverLink}/lib/dri:/usr/lib/dri:/usr/lib32/dri" ]
|
|
++ lib.optionals (!minimal) [ "--enable-glx" ];
|
|
|
|
installFlags = [ "dummy_drv_video_ladir=$(out)/lib/dri" ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://www.freedesktop.org/wiki/Software/vaapi/";
|
|
license = licenses.mit;
|
|
description = "VAAPI library: Video Acceleration API";
|
|
platforms = platforms.unix;
|
|
maintainers = with maintainers; [ SuperSandro2000 ];
|
|
};
|
|
}
|