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.
38 lines
1.2 KiB
Nix
38 lines
1.2 KiB
Nix
{ stdenv, lib, fetchurl, libX11, pkg-config, libXext, libdrm, libXfixes, wayland, libffi
|
|
, libGL, mesa
|
|
, minimal ? false, libva1-minimal
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "libva";
|
|
version = "1.7.3";
|
|
|
|
src = fetchurl {
|
|
url = "https://www.freedesktop.org/software/vaapi/releases/libva/${pname}-${version}.tar.bz2";
|
|
sha256 = "1ndrf136rlw03xag7j1xpmf9015d1h0dpnv6v587jnh6k2a17g12";
|
|
};
|
|
|
|
outputs = [ "bin" "dev" "out" ];
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
|
|
buildInputs = [ libdrm ]
|
|
++ lib.optionals (!minimal) [ libva1-minimal libX11 libXext libXfixes wayland libffi libGL ];
|
|
# TODO: share libs between minimal and !minimal - perhaps just symlink them
|
|
|
|
configureFlags =
|
|
# Add FHS paths for non-NixOS applications.
|
|
[ "--with-drivers-path=${mesa.drivers.driverLink}/lib/dri:/usr/lib/dri:/usr/lib32/dri" ] ++
|
|
lib.optionals (!minimal) [ "--enable-glx" ];
|
|
|
|
installFlags = [ "dummy_drv_video_ladir=$(out)/lib/dri" ];
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = "http://www.freedesktop.org/wiki/Software/vaapi";
|
|
license = licenses.mit;
|
|
description = "VAAPI library: Video Acceleration API";
|
|
platforms = platforms.unix;
|
|
maintainers = with maintainers; [ ];
|
|
};
|
|
}
|