nixpkgs/pkgs/development/libraries/libvdpau/default.nix

33 lines
1 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, pkgconfig, xorg, mesa, meson, ninja }:
stdenv.mkDerivation rec {
pname = "libvdpau";
2020-04-12 21:13:03 +02:00
version = "1.4";
2013-02-02 16:18:48 +01:00
src = fetchurl {
url = "https://gitlab.freedesktop.org/vdpau/libvdpau/-/archive/${version}/${pname}-${version}.tar.bz2";
2020-04-12 21:13:03 +02:00
sha256 = "0c1zsfr6ypzwv8g9z50kdahpb7pirarq4z8avqqyyma5b9684n22";
};
patches = [ ./installdir.patch ];
outputs = [ "out" "dev" ];
2015-10-06 17:34:08 +02:00
nativeBuildInputs = [ meson ninja pkgconfig ];
buildInputs = with xorg; [ xorgproto libXext ];
propagatedBuildInputs = [ xorg.libX11 ];
2013-11-16 21:25:57 +01:00
mesonFlags = stdenv.lib.optional stdenv.isLinux
[ "-Dmoduledir=${mesa.drivers.driverLink}/lib/vdpau" ];
2019-10-30 00:53:51 +01:00
NIX_LDFLAGS = stdenv.lib.optionalString stdenv.isDarwin "-lX11";
meta = with stdenv.lib; {
homepage = "https://people.freedesktop.org/~aplattner/vdpau/";
description = "Library to use the Video Decode and Presentation API for Unix (VDPAU)";
license = licenses.mit; # expat version
platforms = platforms.unix;
maintainers = [ maintainers.vcunat ];
};
}