python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / libraries / opencl-headers / default.nix
blobe5300e9731ac2671b0d924777c31e883a82e8aee
1 { lib, stdenv, fetchFromGitHub
2 }:
4 stdenv.mkDerivation rec {
5   pname = "opencl-headers";
6   version = "2022.09.30";
8   src = fetchFromGitHub {
9     owner = "KhronosGroup";
10     repo = "OpenCL-Headers";
11     rev = "v${version}";
12     sha256 = "sha256-Vbh+bt/g+7glEyqMYCKTANggaIOW/n1L3TaCNouc/28=";
13   };
15   installPhase = ''
16     mkdir -p $out/include/CL
17     cp CL/* $out/include/CL
18   '';
20   meta = with lib; {
21     description = "Khronos OpenCL headers version ${version}";
22     homepage = "https://www.khronos.org/registry/cl/";
23     license = licenses.asl20;
24     platforms = platforms.unix;
25   };