mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-19 20:23:02 +00:00
27 lines
590 B
Nix
27 lines
590 B
Nix
{ lib, stdenv, fetchFromGitHub
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "opencl-headers";
|
|
version = "2023.02.06";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "KhronosGroup";
|
|
repo = "OpenCL-Headers";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-BJDaDokyHgmyl+bGqCwG1J7iOvu0E3P3iYZ1/krot8s=";
|
|
};
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/include/CL
|
|
cp CL/* $out/include/CL
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Khronos OpenCL headers version ${version}";
|
|
homepage = "https://www.khronos.org/registry/cl/";
|
|
license = licenses.asl20;
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|