python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / libraries / intel-gmmlib / default.nix
blob3a00d87bf6ac634b0e1b048ef098f0fe48fbf901
1 { lib
2 , stdenv
3 , fetchFromGitHub
4 , cmake
5 }:
7 stdenv.mkDerivation rec {
8   pname = "intel-gmmlib";
9   version = "22.3.0";
11   src = fetchFromGitHub {
12     owner = "intel";
13     repo = "gmmlib";
14     rev = "intel-gmmlib-${version}";
15     sha256 = "sha256-ZJQ4KLKWA9SIXqKffU/uxUU+aXgfDdxQ5Wejgcfowgs=";
16   };
18   nativeBuildInputs = [ cmake ];
20   meta = with lib; {
21     homepage = "https://github.com/intel/gmmlib";
22     license = licenses.mit;
23     description = "Intel Graphics Memory Management Library";
24     longDescription = ''
25       The Intel(R) Graphics Memory Management Library provides device specific
26       and buffer management for the Intel(R) Graphics Compute Runtime for
27       OpenCL(TM) and the Intel(R) Media Driver for VAAPI.
28     '';
29     platforms = [ "x86_64-linux" "i686-linux" ];
30     maintainers = with maintainers; [ SuperSandro2000 ];
31   };