{ lib , stdenv , fetchFromGitHub , writeScript , cmake , rocm-cmake , rocm-runtime , rocm-device-libs , rocm-comgr , hip , sqlite , python3 , gtest ? null , boost ? null , fftw ? null , fftwFloat ? null , llvmPackages ? null , buildTests ? false , buildBenchmarks ? false }: assert buildTests -> gtest != null; assert buildBenchmarks -> fftw != null; assert buildBenchmarks -> fftwFloat != null; assert (buildTests || buildBenchmarks) -> boost != null; assert (buildTests || buildBenchmarks) -> llvmPackages != null; stdenv.mkDerivation (finalAttrs: { pname = "rocfft"; repoVersion = "1.0.18"; rocmVersion = "5.3.3"; version = "${finalAttrs.repoVersion}-${finalAttrs.rocmVersion}"; outputs = [ "out" ] ++ lib.optionals buildTests [ "test" ] ++ lib.optionals buildBenchmarks [ "benchmark" ]; src = fetchFromGitHub { owner = "ROCmSoftwarePlatform"; repo = "rocFFT"; rev = "rocm-${finalAttrs.rocmVersion}"; hash = "sha256-jb2F1fRe+YLloYJ/KtzrptUDhmdBDBtddeW/g55owKM="; }; nativeBuildInputs = [ cmake rocm-cmake hip ]; buildInputs = [ rocm-runtime rocm-device-libs rocm-comgr sqlite python3 ] ++ lib.optionals buildTests [ gtest ] ++ lib.optionals (buildTests || buildBenchmarks) [ boost fftw fftwFloat llvmPackages.openmp ]; propogatedBuildInputs = lib.optionals buildTests [ fftw fftwFloat ]; cmakeFlags = [ "-DCMAKE_C_COMPILER=hipcc" "-DCMAKE_CXX_COMPILER=hipcc" "-DUSE_HIP_CLANG=ON" "-DSQLITE_USE_SYSTEM_PACKAGE=ON" # Manually define CMAKE_INSTALL_