summary refs log tree commit diff
path: root/pkgs/tools/X11/vdpauinfo/default.nix
blob: 2332cd1bc510993af2fc70cc4130e02a589a6d7f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ stdenv, fetchurl, pkgconfig, xlibs, libvdpau }:

stdenv.mkDerivation rec {
  name = "vdpauinfo-0.9";

  src = fetchurl {
    url = "http://people.freedesktop.org/~aplattner/vdpau/${name}.tar.gz";
    sha256 = "1qy84clsz3l3hvhaxw01rl4bjqlsaml5l63rc43vck6vh8vgwh50";
  };

  buildInputs = [ pkgconfig libvdpau ];

  meta = with stdenv.lib; {
    homepage = http://people.freedesktop.org/~aplattner/vdpau/;
    description = "Tool to query the Video Decode and Presentation API for Unix (VDPAU) abilities of the system";
    license = licenses.mit; # expat version
    platforms = platforms.unix;
    maintainers = [ maintainers.vcunat ];
  };
}