3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/libraries/rocm-device-libs/default.nix

49 lines
1.3 KiB
Nix
Raw Normal View History

{ lib, stdenv
2020-07-10 18:29:23 +01:00
, fetchFromGitHub
2021-09-08 15:15:14 +01:00
, writeScript
2020-07-10 18:29:23 +01:00
, cmake
, clang
, clang-unwrapped
, lld
, llvm
}:
stdenv.mkDerivation rec {
pname = "rocm-device-libs";
2021-09-02 20:31:48 +01:00
version = "4.3.1";
2020-07-10 18:29:23 +01:00
src = fetchFromGitHub {
owner = "RadeonOpenCompute";
repo = "ROCm-Device-Libs";
rev = "rocm-${version}";
2021-09-02 20:31:48 +01:00
hash = "sha256-fPD9vevO2UDaFaclSI0CC/lRfM5WemWmxP1K5ajXHbk=";
2020-07-10 18:29:23 +01:00
};
nativeBuildInputs = [ cmake ];
2020-08-15 06:59:31 +01:00
buildInputs = [ clang lld llvm ];
2020-07-10 18:29:23 +01:00
cmakeBuildType = "Release";
cmakeFlags = [
"-DCMAKE_PREFIX_PATH=${llvm}/lib/cmake/llvm;${clang-unwrapped}/lib/cmake/clang"
"-DLLVM_TARGETS_TO_BUILD='AMDGPU;X86'"
"-DCLANG=${clang}/bin/clang"
];
2021-09-08 15:15:14 +01:00
passthru.updateScript = writeScript "update.sh" ''
#!/usr/bin/env nix-shell
#!nix-shell -i bash -p curl jq common-updater-scripts
version="$(curl -sL "https://api.github.com/repos/RadeonOpenCompute/ROCm-Device-Libs/releases?per_page=1" | jq '.[0].tag_name | split("-") | .[1]' --raw-output)"
update-source-version rocm-device-libs "$version"
'';
meta = with lib; {
2020-07-10 18:29:23 +01:00
description = "Set of AMD-specific device-side language runtime libraries";
homepage = "https://github.com/RadeonOpenCompute/ROCm-Device-Libs";
license = licenses.ncsa;
2021-09-02 20:31:48 +01:00
maintainers = with maintainers; [ lovesegfault ];
2020-07-10 18:29:23 +01:00
platforms = platforms.linux;
};
}