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

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

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

  buildInputs = [ pkgconfig xlibs.libX11 libvdpau ];

  meta = {
    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 = "bsd";
  };
}