cmrt: init at 1.0.6
This commit is contained in:
parent
a627399a84
commit
21a8c9e301
24
pkgs/development/libraries/cmrt/default.nix
Normal file
24
pkgs/development/libraries/cmrt/default.nix
Normal file
@ -0,0 +1,24 @@
|
||||
{ stdenv, fetchurl, autoreconfHook, pkgconfig, libdrm, libva }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "cmrt-${version}";
|
||||
version = "1.0.6";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/intel/cmrt/archive/${version}.tar.gz";
|
||||
sha256 = "1q7651nvvcqhph5rgfhklm71zqd0c405mrh3wx0cfzvil82yj8na";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
||||
|
||||
buildInputs = [ libdrm libva ];
|
||||
|
||||
meta = with stdenv.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;
|
||||
};
|
||||
}
|
@ -8837,6 +8837,8 @@ with pkgs;
|
||||
|
||||
cmocka = callPackage ../development/libraries/cmocka { };
|
||||
|
||||
cmrt = callPackage ../development/libraries/cmrt { };
|
||||
|
||||
cogl = callPackage ../development/libraries/cogl { };
|
||||
|
||||
coin3d = callPackage ../development/libraries/coin3d { };
|
||||
|
Loading…
Reference in New Issue
Block a user