opencl-headers: use cmake build

This is makes the build process simpler and exports .cmake
and pkg-config(.pc) files
This commit is contained in:
lelgenio 2023-09-13 00:10:41 -03:00
parent c718a86fd0
commit 86f22aa56a

View File

@ -1,4 +1,7 @@
{ lib, stdenv, fetchFromGitHub
{ lib
, stdenv
, fetchFromGitHub
, cmake
}:
stdenv.mkDerivation rec {
@ -12,10 +15,7 @@ stdenv.mkDerivation rec {
sha256 = "sha256-BJDaDokyHgmyl+bGqCwG1J7iOvu0E3P3iYZ1/krot8s=";
};
installPhase = ''
mkdir -p $out/include/CL
cp CL/* $out/include/CL
'';
nativeBuildInputs = [ cmake ];
meta = with lib; {
description = "Khronos OpenCL headers version ${version}";