2014-08-04 07:22:16 +01:00
|
|
|
{ stdenv, fetchurl, pkgconfig, libdrm, libva, libX11, intel-gpu-tools, mesa_noglu, wayland, python, gnum4 }:
|
2013-01-28 23:31:35 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2015-01-01 19:48:49 +00:00
|
|
|
name = "libva-intel-driver-1.5.0";
|
2013-06-03 05:01:12 +01:00
|
|
|
|
2013-01-28 23:31:35 +00:00
|
|
|
src = fetchurl {
|
2013-01-29 10:56:12 +00:00
|
|
|
url = "http://www.freedesktop.org/software/vaapi/releases/libva-intel-driver/${name}.tar.bz2";
|
2015-01-01 19:48:49 +00:00
|
|
|
sha256 = "1p537n2dpmybpf7rligbnhw406lr575bhkafs4n64jxk78clid6h";
|
2013-01-28 23:31:35 +00:00
|
|
|
};
|
|
|
|
|
2014-08-04 07:22:16 +01:00
|
|
|
prePatch = ''
|
|
|
|
sed -i 's,#!/usr/bin/env python,#!${python}/bin/python,' src/shaders/gpp.py
|
|
|
|
'';
|
|
|
|
|
|
|
|
buildInputs = [ pkgconfig libdrm libva libX11 intel-gpu-tools mesa_noglu wayland gnum4 ];
|
2013-01-28 23:31:35 +00:00
|
|
|
|
|
|
|
preConfigure = ''
|
|
|
|
sed -i -e "s,LIBVA_DRIVERS_PATH=.*,LIBVA_DRIVERS_PATH=$out/lib/dri," configure
|
|
|
|
'';
|
|
|
|
|
2014-08-04 07:22:16 +01:00
|
|
|
meta = with stdenv.lib; {
|
2013-01-28 23:31:35 +00:00
|
|
|
homepage = http://cgit.freedesktop.org/vaapi/intel-driver/;
|
2014-08-04 07:22:16 +01:00
|
|
|
license = licenses.mit;
|
2013-01-28 23:31:35 +00:00
|
|
|
description = "Intel driver for the VAAPI library";
|
2014-08-04 07:22:16 +01:00
|
|
|
platforms = platforms.unix;
|
2013-01-28 23:31:35 +00:00
|
|
|
};
|
|
|
|
}
|