2013-02-02 16:18:48 +01:00
|
|
|
{ stdenv, fetchurl, pkgconfig, xlibs }:
|
2010-12-27 19:30:52 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2013-02-02 16:18:48 +01:00
|
|
|
name = "libvdpau-0.6";
|
|
|
|
|
2010-12-27 19:30:52 +01:00
|
|
|
src = fetchurl {
|
|
|
|
url = "http://people.freedesktop.org/~aplattner/vdpau/${name}.tar.gz";
|
2013-02-02 16:18:48 +01:00
|
|
|
sha256 = "0x9dwxzw0ilsy88kqlih3170z1zfrrsx1dr9jbwbn0cbkpnbwmcv";
|
2010-12-27 19:30:52 +01:00
|
|
|
};
|
|
|
|
|
2013-02-02 16:18:48 +01:00
|
|
|
buildInputs = with xlibs; [ pkgconfig dri2proto libXext ];
|
2012-07-02 16:14:14 +02:00
|
|
|
|
2013-02-02 16:18:48 +01:00
|
|
|
propagatedBuildInputs = [ xlibs.libX11 ];
|
2010-12-27 19:30:52 +01:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = http://people.freedesktop.org/~aplattner/vdpau/;
|
|
|
|
description = "Library to use the Video Decode and Presentation API for Unix (VDPAU)";
|
|
|
|
license = "bsd";
|
|
|
|
};
|
|
|
|
}
|