rocm-runtime 5.4.0 -> 5.4.1 https://repology.org/metapackage/rocm-runtime/versions attrpath: rocm-runtime Checking auto update branch... [version] [version] skipping because derivation has updateScript [rustCrateVersion] [rustCrateVersion] No cargoSha256 or cargoHash found [golangModuleVersion] [golangModuleVersion] Not a buildGoModule package with vendorSha256 or vendorHash [updateScript] [updateScript] Success [updateScript] these 2 derivations will be built: /nix/store/m0sl6qp4mh4lsmks6bwc6wrsrkl57q98-update.sh.drv /nix/store/rhd1x3lz28y1r1s6n7hmhlzk7kf4v9zw-packages.json.drv building '/nix/store/m0sl6qp4mh4lsmks6bwc6wrsrkl57q98-update.sh.drv'... building '/nix/store/rhd1x3lz28y1r1s6n7hmhlzk7kf4v9zw-packages.json.drv'... Going to be running update for following packages: - rocm-runtime-5.4.0 Press Enter key to continue... Running update for: - rocm-runtime-5.4.0: UPDATING ... - rocm-runtime-5.4.0: DONE. Packages updated! [quotedUrls] [quotedUrls] nothing found to replace Diff after rewrites: diff --git a/pkgs/development/libraries/rocm-runtime/default.nix b/pkgs/development/libraries/rocm-runtime/default.nix index 86ddf5b7703..12106057524 100644 --- a/pkgs/development/libraries/rocm-runtime/default.nix +++ b/pkgs/development/libraries/rocm-runtime/default.nix @@ -15,13 +15,13 @@ stdenv.mkDerivation (finalAttrs: { pname = "rocm-runtime"; - version = "5.4.0"; + version = "5.4.1"; src = fetchFromGitHub { owner = "RadeonOpenCompute"; repo = "ROCR-Runtime"; rev = "rocm-${finalAttrs.version}"; - hash = "sha256-M9kv1Oe5ZZfd9H/+KUJUoK9L1EdyS2qRp2mJDK0dnPE="; + hash = "sha256-JkTXTQmdESHSFbA6HZdMK3pYEApz9aoAlMzdXayzdyY="; }; sourceRoot = "source/src"; No auto update branch exists Old version 5.4.0" not present in staging derivation file with contents: { lib , stdenv , fetchFromGitHub , rocmUpdateScript , pkg-config , cmake , xxd , rocm-device-libs , rocm-thunk , libelf , libdrm , numactl , valgrind , libxml2 }: stdenv.mkDerivation (finalAttrs: { pname = "rocm-runtime"; version = "5.4.1"; src = fetchFromGitHub { owner = "RadeonOpenCompute"; repo = "ROCR-Runtime"; rev = "rocm-${finalAttrs.version}"; hash = "sha256-JkTXTQmdESHSFbA6HZdMK3pYEApz9aoAlMzdXayzdyY="; }; sourceRoot = "${finalAttrs.src.name}/src"; nativeBuildInputs = [ pkg-config cmake xxd ]; buildInputs = [ rocm-thunk libelf libdrm numactl valgrind libxml2 ]; postPatch = '' patchShebangs image/blit_src/create_hsaco_ascii_file.sh patchShebangs core/runtime/trap_handler/create_trap_handler_header.sh substituteInPlace CMakeLists.txt \ --replace 'hsa/include/hsa' 'include/hsa' # We compile clang before rocm-device-libs, so patch it in afterwards substituteInPlace image/blit_src/CMakeLists.txt \ --replace '-cl-denorms-are-zero' '-cl-denorms-are-zero --rocm-device-lib-path=${rocm-device-libs}/amdgcn/bitcode' ''; fixupPhase = '' rm -rf $out/hsa/* ln -s $out/{include,lib} $out/hsa ''; passthru.updateScript = rocmUpdateScript { name = finalAttrs.pname; owner = finalAttrs.src.owner; repo = finalAttrs.src.repo; }; meta = with lib; { description = "Platform runtime for ROCm"; homepage = "https://github.com/RadeonOpenCompute/ROCR-Runtime"; license = with licenses; [ ncsa ]; maintainers = with maintainers; [ lovesegfault ] ++ teams.rocm.members; broken = finalAttrs.version != stdenv.cc.version; }; })