python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / libraries / rocm-opencl-icd / default.nix
blob9b0f7ab9f81f812ce7d1891e349e2bba92da253b
1 { lib, stdenv, rocm-opencl-runtime }:
3 stdenv.mkDerivation rec {
4   pname = "rocm-opencl-icd";
5   version = rocm-opencl-runtime.version;
7   dontUnpack = true;
9   installPhase = ''
10     mkdir -p $out/etc/OpenCL/vendors
11     echo "${rocm-opencl-runtime}/lib/libamdocl64.so" > $out/etc/OpenCL/vendors/amdocl64.icd
12   '';
14   meta = with lib; {
15     description = "OpenCL ICD definition for AMD GPUs using the ROCm stack";
16     license = licenses.mit;
17     maintainers = with maintainers; [ lovesegfault ];
18     platforms = platforms.linux;
19   };