qq: fix download url

This commit is contained in:
500InternalError 2024-04-27 15:19:31 +08:00
parent eacd0a96dd
commit 1358106e6e

View File

@ -28,11 +28,11 @@ let
sources = import ./sources.nix; sources = import ./sources.nix;
srcs = { srcs = {
x86_64-linux = fetchurl { x86_64-linux = fetchurl {
url = "https://dldir1.qq.com/qqfile/qq/QQNT/${sources.urlhash}/linuxqq_${sources.version}_amd64.deb"; url = sources.amd64_url;
hash = sources.amd64_hash; hash = sources.amd64_hash;
}; };
aarch64-linux = fetchurl { aarch64-linux = fetchurl {
url = "https://dldir1.qq.com/qqfile/qq/QQNT/${sources.urlhash}/linuxqq_${sources.version}_arm64.deb"; url = sources.arm64_url;
hash = sources.arm64_hash; hash = sources.arm64_hash;
}; };
}; };