rocm-thunk 0 -> 1 attrpath: rocm-thunk 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/i48wld5cy6vn2kg9y6gd9xhf4q8hf6cf-update.sh.drv /nix/store/m033n1wpi3hn1dry7xi6hyfvqlb22ql6-packages.json.drv building '/nix/store/i48wld5cy6vn2kg9y6gd9xhf4q8hf6cf-update.sh.drv'... building '/nix/store/m033n1wpi3hn1dry7xi6hyfvqlb22ql6-packages.json.drv'... Going to be running update for following packages: - rocm-thunk-5.4.0 Press Enter key to continue... Running update for: - rocm-thunk-5.4.0: UPDATING ... - rocm-thunk-5.4.0: DONE. Packages updated! [quotedUrls] [quotedUrls] nothing found to replace Diff after rewrites: diff --git a/pkgs/development/libraries/rocm-thunk/default.nix b/pkgs/development/libraries/rocm-thunk/default.nix index 6bca7a89fc4..4eeac6a4bdb 100644 --- a/pkgs/development/libraries/rocm-thunk/default.nix +++ b/pkgs/development/libraries/rocm-thunk/default.nix @@ -10,7 +10,7 @@ stdenv.mkDerivation (finalAttrs: { pname = "rocm-thunk"; - version = "5.4.0"; + version = "5.4.1"; src = fetchFromGitHub { owner = "RadeonOpenCompute"; 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 , rocm-cmake , libdrm , numactl , valgrind }: stdenv.mkDerivation (finalAttrs: { pname = "rocm-thunk"; version = "5.4.1"; src = fetchFromGitHub { owner = "RadeonOpenCompute"; repo = "ROCT-Thunk-Interface"; rev = "rocm-${finalAttrs.version}"; hash = "sha256-EU5toaKzVeZpdm/YhaQ0bXq0eoYwYQ5qGLUJzxgZVjE="; }; nativeBuildInputs = [ pkg-config cmake rocm-cmake ]; buildInputs = [ libdrm numactl valgrind ]; cmakeFlags = [ # Manually define CMAKE_INSTALL_ # See: https://github.com/NixOS/nixpkgs/pull/197838 "-DCMAKE_INSTALL_BINDIR=bin" "-DCMAKE_INSTALL_LIBDIR=lib" "-DCMAKE_INSTALL_INCLUDEDIR=include" ]; passthru.updateScript = rocmUpdateScript { name = finalAttrs.pname; owner = finalAttrs.src.owner; repo = finalAttrs.src.repo; }; meta = with lib; { description = "Radeon open compute thunk interface"; homepage = "https://github.com/RadeonOpenCompute/ROCT-Thunk-Interface"; license = with licenses; [ bsd2 mit ]; maintainers = with maintainers; [ lovesegfault ] ++ teams.rocm.members; broken = finalAttrs.version != stdenv.cc.version; }; })