My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/libraries/opencl-headers/default.nix

26 lines
590 B

{ lib, stdenv, fetchFromGitHub
}:
stdenv.mkDerivation rec {
pname = "opencl-headers";
version = "2021.06.30";
src = fetchFromGitHub {
owner = "KhronosGroup";
repo = "OpenCL-Headers";
rev = "v${version}";
sha256 = "sha256-MdKC48f1zhVAcHrqzrgT9iaYrHXurV8vDt+GnDroO9s=";
};
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;
};
}