2010-12-27 18:30:52 +00:00
|
|
|
{ stdenv, fetchurl, pkgconfig, xlibs, libvdpau }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2014-12-25 08:42:31 +00:00
|
|
|
name = "vdpauinfo-0.9";
|
2013-11-19 09:12:45 +00:00
|
|
|
|
2010-12-27 18:30:52 +00:00
|
|
|
src = fetchurl {
|
|
|
|
url = "http://people.freedesktop.org/~aplattner/vdpau/${name}.tar.gz";
|
2014-12-25 08:42:31 +00:00
|
|
|
sha256 = "1qy84clsz3l3hvhaxw01rl4bjqlsaml5l63rc43vck6vh8vgwh50";
|
2010-12-27 18:30:52 +00:00
|
|
|
};
|
|
|
|
|
2014-12-25 08:42:31 +00:00
|
|
|
buildInputs = [ pkgconfig libvdpau ];
|
2010-12-27 18:30:52 +00:00
|
|
|
|
2014-12-25 08:42:31 +00:00
|
|
|
meta = with stdenv.lib; {
|
2010-12-27 18:30:52 +00:00
|
|
|
homepage = http://people.freedesktop.org/~aplattner/vdpau/;
|
|
|
|
description = "Tool to query the Video Decode and Presentation API for Unix (VDPAU) abilities of the system";
|
2014-12-25 08:42:31 +00:00
|
|
|
license = licenses.mit; # expat version
|
|
|
|
platforms = platforms.unix;
|
|
|
|
maintainers = [ maintainers.vcunat ];
|
2010-12-27 18:30:52 +00:00
|
|
|
};
|
|
|
|
}
|