summary refs log tree commit diff
path: root/pkgs/development/libraries/vaapi-vdpau/default.nix
blob: fb24ba98b450bfbb841e5639a96a95f466d6c233 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{ stdenv, fetchurl, libvdpau, mesa, libva, pkgconfig }:

stdenv.mkDerivation rec {
  name = "libva-vdpau-driver-0.7.4";
  
  src = fetchurl {
    url = "http://www.freedesktop.org/software/vaapi/releases/libva-vdpau-driver/${name}.tar.bz2";
    sha256 = "1fcvgshzyc50yb8qqm6v6wn23ghimay23ci0p8sm8gxcy211jp0m";
  };

  buildInputs = [ libvdpau mesa libva pkgconfig ];

  preConfigure = ''
    sed -i -e "s,LIBVA_DRIVERS_PATH=.*,LIBVA_DRIVERS_PATH=$out/lib/dri," configure
  '';

  patches = [ ./glext85.patch ];

  meta = {
    homepage = http://cgit.freedesktop.org/vaapi/vdpau-driver/;
    license = "GPLv2+";
    description = "VDPAU driver for the VAAPI library";
  };
}