linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / libraries / libvdpau / default.nix
blob75dcd337c38bbe900bb8ce064bace7a61e0c0703
1 { lib, stdenv, fetchurl, pkg-config, xorg, mesa, meson, ninja }:
3 stdenv.mkDerivation rec {
4   pname = "libvdpau";
5   version = "1.4";
7   src = fetchurl {
8     url = "https://gitlab.freedesktop.org/vdpau/libvdpau/-/archive/${version}/${pname}-${version}.tar.bz2";
9     sha256 = "0c1zsfr6ypzwv8g9z50kdahpb7pirarq4z8avqqyyma5b9684n22";
10   };
11   patches = [ ./installdir.patch ];
13   outputs = [ "out" "dev" ];
15   nativeBuildInputs = [ meson ninja pkg-config ];
16   buildInputs = with xorg; [ xorgproto libXext ];
18   propagatedBuildInputs = [ xorg.libX11 ];
20   mesonFlags = lib.optional stdenv.isLinux
21     [ "-Dmoduledir=${mesa.drivers.driverLink}/lib/vdpau" ];
23   NIX_LDFLAGS = lib.optionalString stdenv.isDarwin "-lX11";
25   meta = with lib; {
26     homepage = "https://people.freedesktop.org/~aplattner/vdpau/";
27     description = "Library to use the Video Decode and Presentation API for Unix (VDPAU)";
28     license = licenses.mit; # expat version
29     platforms = platforms.unix;
30     maintainers = [ maintainers.vcunat ];
31   };