lol
0
fork

Configure Feed

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

at master 43 lines 1.0 kB view raw
1{ 2 lib, 3 stdenv, 4 fetchFromGitHub, 5 cmake, 6 # for passthru.tests 7 intel-compute-runtime, 8 intel-media-driver, 9}: 10 11stdenv.mkDerivation rec { 12 pname = "intel-gmmlib"; 13 version = "22.8.2"; 14 15 src = fetchFromGitHub { 16 owner = "intel"; 17 repo = "gmmlib"; 18 tag = "intel-gmmlib-${version}"; 19 hash = "sha256-dn8I3cuApy+RUWeKDVzU0sr3fUjHoDFHdGasFTAufec="; 20 }; 21 22 nativeBuildInputs = [ cmake ]; 23 24 passthru.tests = { 25 inherit intel-compute-runtime intel-media-driver; 26 }; 27 28 meta = with lib; { 29 homepage = "https://github.com/intel/gmmlib"; 30 license = licenses.mit; 31 description = "Intel Graphics Memory Management Library"; 32 longDescription = '' 33 The Intel(R) Graphics Memory Management Library provides device specific 34 and buffer management for the Intel(R) Graphics Compute Runtime for 35 OpenCL(TM) and the Intel(R) Media Driver for VAAPI. 36 ''; 37 platforms = [ 38 "x86_64-linux" 39 "i686-linux" 40 ]; 41 maintainers = with maintainers; [ SuperSandro2000 ]; 42 }; 43}