25 lines
705 B
Nix
25 lines
705 B
Nix
{ lib, stdenv, fetchurl, autoreconfHook, pkg-config, libdrm, libva }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "cmrt";
|
|
version = "1.0.6";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/intel/cmrt/archive/${version}.tar.gz";
|
|
sha256 = "1q7651nvvcqhph5rgfhklm71zqd0c405mrh3wx0cfzvil82yj8na";
|
|
};
|
|
|
|
nativeBuildInputs = [ autoreconfHook pkg-config ];
|
|
|
|
buildInputs = [ libdrm libva ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://01.org/linuxmedia";
|
|
description = "Intel C for Media Runtime";
|
|
longDescription = "Media GPU kernel manager for Intel G45 & HD Graphics family";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ tadfisher ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|