summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/networking/instant-messengers/qq
diff options
context:
space:
mode:
authorWeijia Wang <9713184+wegank@users.noreply.github.com>2023-01-01 11:28:22 +0100
committerWeijia Wang <9713184+wegank@users.noreply.github.com>2023-01-01 11:28:22 +0100
commit97bcd45a07d2e30c9109f586cdec407e0392bfd0 (patch)
treeadeda325cd2ef8eb3f7ba179a9ee45a7d5a564f2 /pkgs/applications/networking/instant-messengers/qq
parent215933a9387c7d9c57babb6246003ba39896b5d5 (diff)
qq: 2.0.3-543 -> 3.0.0-565
Diffstat (limited to 'pkgs/applications/networking/instant-messengers/qq')
-rw-r--r--pkgs/applications/networking/instant-messengers/qq/default.nix37
1 files changed, 12 insertions, 25 deletions
diff --git a/pkgs/applications/networking/instant-messengers/qq/default.nix b/pkgs/applications/networking/instant-messengers/qq/default.nix
index 6d1a2696a4c9..42b8a929a213 100644
--- a/pkgs/applications/networking/instant-messengers/qq/default.nix
+++ b/pkgs/applications/networking/instant-messengers/qq/default.nix
@@ -17,20 +17,18 @@
, at-spi2-core
, autoPatchelfHook
, wrapGAppsHook
-, copyDesktopItems
-, makeDesktopItem
}:
let
- version = "2.0.3-543";
+ version = "3.0.0-565";
srcs = {
x86_64-linux = fetchurl {
- url = "https://dldir1.qq.com/qqfile/qq/QQNT/50eed662/QQ-v${version}_x64.deb";
- sha256 = "sha256-O8zaVHt/oXserPVHe/r6pAFpWFeLDVsiaazgaX7kxu8=";
+ url = "https://dldir1.qq.com/qqfile/qq/QQNT/64bd2578/linuxqq_${version}_amd64.deb";
+ sha256 = "sha256-IfBbheVwg4b5PuLX9bzqSuTcElxNaV3tmbGd3v/NkCY=";
};
aarch64-linux = fetchurl {
- url = "https://dldir1.qq.com/qqfile/qq/QQNT/50eed662/QQ-v${version}_arm64.deb";
- sha256 = "sha256-01ZpcoSDc5b0MCKAMq16N4cXzbouHNckOGsv+Z4et7w=";
+ url = "https://dldir1.qq.com/qqfile/qq/QQNT/64bd2578/linuxqq_${version}_arm64.deb";
+ sha256 = "sha256-6IlAJdPknaQzOE48sdxb5QbB+ZF1xKstF3ARGHM30GY=";
};
};
src = srcs.${stdenv.hostPlatform.system} or (throw "Unsupported system: ${stdenv.hostPlatform.system}");
@@ -44,7 +42,6 @@ stdenv.mkDerivation {
nativeBuildInputs = [
autoPatchelfHook
wrapGAppsHook
- copyDesktopItems
dpkg
];
@@ -67,28 +64,18 @@ stdenv.mkDerivation {
installPhase = ''
runHook preInstall
- mkdir -p "$out/share/icons/hicolor/0x0/apps"
- cp usr/share/icons/hicolor/0x0/apps/qq.png $out/share/icons/hicolor/0x0/apps
- mkdir -p "$out/opt"
- cp -r "opt/"* $out/opt
+ mkdir -p $out/bin
+ cp -r opt $out/opt
+ cp -r usr/share $out/share
+ substituteInPlace $out/share/applications/qq.desktop \
+ --replace "/opt/QQ/qq" "$out/bin/qq" \
+ --replace "/usr/share" "$out/share"
+ ln -s $out/opt/QQ/qq $out/bin/qq
- mkdir -p "$out/bin"
- ln -s "$out/opt/QQ/qq" "$out/bin/qq"
runHook postInstall
'';
- desktopItems = [
- (makeDesktopItem {
- desktopName = "Tencent QQ";
- genericName = "A messaging app";
- categories = [ "Network" ];
- icon = "qq";
- exec = "qq";
- name = "qq";
- })
- ];
-
meta = with lib; {
homepage = "https://im.qq.com/linuxqq/";
description = "Messaging app";