* Added libvdpau and vdpauinfo.

svn path=/nixpkgs/branches/stdenv-updates/; revision=25296
This commit is contained in:
Eelco Dolstra
2010-12-27 18:30:52 +00:00
parent a85502fa0d
commit 1f5b61713e
3 changed files with 40 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
{ stdenv, fetchurl, pkgconfig, xlibs }:
stdenv.mkDerivation rec {
name = "libvdpau-0.4.1";
src = fetchurl {
url = "http://people.freedesktop.org/~aplattner/vdpau/${name}.tar.gz";
sha256 = "16zmmbawfnvrxjqvgfwxjfd1wh3vyz2cmvxza6cgf4j9qs36y6q6";
};
buildInputs = [ pkgconfig xlibs.libX11 ];
meta = {
homepage = http://people.freedesktop.org/~aplattner/vdpau/;
description = "Library to use the Video Decode and Presentation API for Unix (VDPAU)";
license = "bsd";
};
}