2014-07-02 22:30:28 +02:00
|
|
|
{ stdenv, fetchurl, pkgconfig, xorg }:
|
2010-12-27 19:30:52 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2015-09-01 10:57:51 +02:00
|
|
|
name = "libvdpau-1.1.1";
|
2013-02-02 16:18:48 +01:00
|
|
|
|
2010-12-27 19:30:52 +01:00
|
|
|
src = fetchurl {
|
2015-09-01 10:57:51 +02:00
|
|
|
url = "http://people.freedesktop.org/~aplattner/vdpau/${name}.tar.bz2";
|
|
|
|
sha256 = "857a01932609225b9a3a5bf222b85e39b55c08787d0ad427dbd9ec033d58d736";
|
2010-12-27 19:30:52 +01:00
|
|
|
};
|
|
|
|
|
2014-07-02 22:30:28 +02:00
|
|
|
buildInputs = with xorg; [ pkgconfig dri2proto libXext ];
|
2012-07-02 16:14:14 +02:00
|
|
|
|
2014-07-02 22:30:28 +02:00
|
|
|
propagatedBuildInputs = [ xorg.libX11 ];
|
2013-11-16 21:25:57 +01:00
|
|
|
|
2014-07-02 22:30:28 +02:00
|
|
|
meta = with stdenv.lib; {
|
2010-12-27 19:30:52 +01:00
|
|
|
homepage = http://people.freedesktop.org/~aplattner/vdpau/;
|
|
|
|
description = "Library to use the Video Decode and Presentation API for Unix (VDPAU)";
|
2014-12-25 09:42:31 +01:00
|
|
|
license = licenses.mit; # expat version
|
|
|
|
platforms = platforms.unix;
|
|
|
|
maintainers = [ maintainers.vcunat ];
|
2010-12-27 19:30:52 +01:00
|
|
|
};
|
|
|
|
}
|