mirror of
https://github.com/terrapkg/packages.git
synced 2026-06-05 03:12:18 +00:00
c16931ecc0
(cherry picked from commit 0eb9a2bcd7)
Co-authored-by: Gilver <rockgrub@disroot.org>
6 lines
256 B
Plaintext
6 lines
256 B
Plaintext
let url = "https://developer.download.nvidia.com/compute/cudnn/redist/";
|
|
let matches = find_all("redistrib_[\\d.]+.json", get(url));
|
|
let series = `${url}${matches[matches.len - 1][0]}`;
|
|
let json = get(series).json();
|
|
rpm.version(json["cudnn"]["version"]);
|