lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

cmrt: init at 1.0.6

+26
+24
pkgs/development/libraries/cmrt/default.nix
··· 1 + { stdenv, fetchurl, autoreconfHook, pkgconfig, libdrm, libva }: 2 + 3 + stdenv.mkDerivation rec { 4 + name = "cmrt-${version}"; 5 + version = "1.0.6"; 6 + 7 + src = fetchurl { 8 + url = "https://github.com/intel/cmrt/archive/${version}.tar.gz"; 9 + sha256 = "1q7651nvvcqhph5rgfhklm71zqd0c405mrh3wx0cfzvil82yj8na"; 10 + }; 11 + 12 + nativeBuildInputs = [ autoreconfHook pkgconfig ]; 13 + 14 + buildInputs = [ libdrm libva ]; 15 + 16 + meta = with stdenv.lib; { 17 + homepage = https://01.org/linuxmedia; 18 + description = "Intel C for Media Runtime"; 19 + longDescription = "Media GPU kernel manager for Intel G45 & HD Graphics family"; 20 + license = licenses.mit; 21 + maintainers = with maintainers; [ tadfisher ]; 22 + platforms = platforms.linux; 23 + }; 24 + }
+2
pkgs/top-level/all-packages.nix
··· 8837 8837 8838 8838 cmocka = callPackage ../development/libraries/cmocka { }; 8839 8839 8840 + cmrt = callPackage ../development/libraries/cmrt { }; 8841 + 8840 8842 cogl = callPackage ../development/libraries/cogl { }; 8841 8843 8842 8844 coin3d = callPackage ../development/libraries/coin3d { };