Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
71 lines
1.4 KiB
Nix
71 lines
1.4 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchpatch,
|
|
cmake,
|
|
ninja,
|
|
libxml2,
|
|
zlib,
|
|
zstd,
|
|
ncurses,
|
|
rocm-merged-llvm,
|
|
python3,
|
|
}:
|
|
|
|
let
|
|
llvmNativeTarget =
|
|
if stdenv.hostPlatform.isx86_64 then
|
|
"X86"
|
|
else if stdenv.hostPlatform.isAarch64 then
|
|
"AArch64"
|
|
else
|
|
throw "Unsupported ROCm LLVM platform";
|
|
in
|
|
stdenv.mkDerivation {
|
|
pname = "rocm-device-libs";
|
|
# In-tree with ROCm LLVM
|
|
inherit (rocm-merged-llvm) version;
|
|
src = rocm-merged-llvm.llvm-src;
|
|
|
|
postPatch = ''
|
|
cd amd/device-libs
|
|
'';
|
|
|
|
patches = [
|
|
./cmake.patch
|
|
(fetchpatch {
|
|
name = "cmake-4-compat-dont-set-cmp0053.patch";
|
|
url = "https://github.com/ROCm/llvm-project/commit/a18cc4c7cb51f94182b6018c7c73acde1b8ebddb.patch";
|
|
hash = "sha256-LNT7srxd4gXDAJ6lSsJXKnRQKSepkAbHeRNH+eZYIFk=";
|
|
})
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
ninja
|
|
python3
|
|
];
|
|
|
|
buildInputs = [
|
|
libxml2
|
|
zlib
|
|
zstd
|
|
ncurses
|
|
rocm-merged-llvm
|
|
];
|
|
|
|
cmakeFlags = [
|
|
"-DCMAKE_RELEASE_TYPE=Release"
|
|
"-DLLVM_TARGETS_TO_BUILD=AMDGPU;${llvmNativeTarget}"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Set of AMD-specific device-side language runtime libraries";
|
|
homepage = "https://github.com/ROCm/ROCm-Device-Libs";
|
|
license = licenses.ncsa;
|
|
maintainers = with maintainers; [ lovesegfault ];
|
|
teams = [ teams.rocm ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|