rocm-device-libs: add update script
This commit is contained in:
parent
c3aa2d2e27
commit
1ab7362a4e
1 changed files with 8 additions and 0 deletions
|
@ -1,5 +1,6 @@
|
||||||
{ lib, stdenv
|
{ lib, stdenv
|
||||||
, fetchFromGitHub
|
, fetchFromGitHub
|
||||||
|
, writeScript
|
||||||
, cmake
|
, cmake
|
||||||
, clang
|
, clang
|
||||||
, clang-unwrapped
|
, clang-unwrapped
|
||||||
|
@ -30,6 +31,13 @@ stdenv.mkDerivation rec {
|
||||||
"-DCLANG=${clang}/bin/clang"
|
"-DCLANG=${clang}/bin/clang"
|
||||||
];
|
];
|
||||||
|
|
||||||
|
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; {
|
meta = with lib; {
|
||||||
description = "Set of AMD-specific device-side language runtime libraries";
|
description = "Set of AMD-specific device-side language runtime libraries";
|
||||||
homepage = "https://github.com/RadeonOpenCompute/ROCm-Device-Libs";
|
homepage = "https://github.com/RadeonOpenCompute/ROCm-Device-Libs";
|
||||||
|
|
Loading…
Reference in a new issue