28 lines
888 B
Nix
28 lines
888 B
Nix
{ stdenv, fetchurl, pkgconfig, libdrm, libva, libX11, intel-gpu-tools, mesa_noglu, wayland, python, gnum4 }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "libva-intel-driver-1.3.2";
|
|
|
|
src = fetchurl {
|
|
url = "http://www.freedesktop.org/software/vaapi/releases/libva-intel-driver/${name}.tar.bz2";
|
|
sha256 = "1l8897plk74zcik6snk7hb5s4ga0d2vypccfkh0bp1fb2775dn8i";
|
|
};
|
|
|
|
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 ];
|
|
|
|
preConfigure = ''
|
|
sed -i -e "s,LIBVA_DRIVERS_PATH=.*,LIBVA_DRIVERS_PATH=$out/lib/dri," configure
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = http://cgit.freedesktop.org/vaapi/intel-driver/;
|
|
license = licenses.mit;
|
|
description = "Intel driver for the VAAPI library";
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|