summary refs log tree commit diff
path: root/pkgs/development/libraries/libvdpau/default.nix
blob: 92ab8d67c91ea1c2ffcf74d7512475c6442b09c1 (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, libX11 }:

stdenv.mkDerivation rec {
  name = "libvdpau-0.5";
  
  src = fetchurl {
    url = "http://people.freedesktop.org/~aplattner/vdpau/${name}.tar.gz";
    sha256 = "0k2ydz4yp7zynlkpd1llfwax30xndwbca36z83ah1i4ldjw2gfhx";
  };

  buildInputs = [ pkgconfig libX11 ];

  propagatedBuildInputs = [ libX11 ];

  meta = {
    homepage = http://people.freedesktop.org/~aplattner/vdpau/;
    description = "Library to use the Video Decode and Presentation API for Unix (VDPAU)";
    license = "bsd";
  };
}