mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-09 14:33:22 +00:00
30 lines
792 B
Nix
30 lines
792 B
Nix
{ lib, stdenv, fetchFromGitHub, opencl-headers, cmake, withTracing ? false }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "opencl-icd-loader";
|
|
version = "2024.10.24";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "KhronosGroup";
|
|
repo = "OpenCL-ICD-Loader";
|
|
rev = "v${version}";
|
|
hash = "sha256-A+Rd/3LyBoUW2MrRDMOcwsTqTADuNxSQdF1HHgfq3mY=";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
buildInputs = [ opencl-headers ];
|
|
|
|
cmakeFlags = [
|
|
(lib.cmakeBool "OCL_ICD_ENABLE_TRACE" withTracing)
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Official Khronos OpenCL ICD Loader";
|
|
mainProgram = "cllayerinfo";
|
|
homepage = "https://github.com/KhronosGroup/OpenCL-ICD-Loader";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ davidtwco ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|