forked from mirrors/nixpkgs
3421d4c470
Add myself as a maintainer. The rebuild impact is large, mostly through mesa -> {qt, gtk}.
25 lines
748 B
Nix
25 lines
748 B
Nix
{ stdenv, fetchurl, pkgconfig, xorg }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "libvdpau-0.9";
|
|
|
|
src = fetchurl {
|
|
url = "http://people.freedesktop.org/~aplattner/vdpau/${name}.tar.gz";
|
|
sha256 = "0vhfkjqghfva3zjif04w7pdp84g08c8xnwir3ah4b99m10a5fag3";
|
|
};
|
|
|
|
buildInputs = with xorg; [ pkgconfig dri2proto libXext ];
|
|
|
|
propagatedBuildInputs = [ xorg.libX11 ];
|
|
|
|
configureFlags = stdenv.lib.optional stdenv.isDarwin "--build=x86_64";
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = http://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 ];
|
|
};
|
|
}
|