Skip to content

Commit

Permalink
rustdesk-bin: Add deprecation notice (will be removed within 2 months
Browse files Browse the repository at this point in the history
  • Loading branch information
pokon548 committed Mar 24, 2024
1 parent 83f02f6 commit 8d44dac
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions pkgs/rustdesk-bin/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,14 @@ let
version = "1.2.3";
name = "Rustdesk-${version}";

src = fetchurl {
url =
"https://github.com/rustdesk/rustdesk/releases/download/${version}/rustdesk-${version}-x86_64.AppImage";
sha256 = "sha256-MJqb50K8Y3mAZOcS0OuHRZh9VfdvMqjZniCJ26eweV4=";
};
src = lib.warn
"${name} from pokon548's NUR is deprecated and will be removed from NUR repo soon. Migrate by changing nur.repos.pokon548.tencent-qq-electron-bwrap to pkgs.rustdesk-flutter"
fetchurl
{
url =
"https://github.com/rustdesk/rustdesk/releases/download/${version}/rustdesk-${version}-x86_64.AppImage";
sha256 = "sha256-MJqb50K8Y3mAZOcS0OuHRZh9VfdvMqjZniCJ26eweV4=";
};

appimageContents = appimageTools.extract { inherit name src; };

Expand Down

0 comments on commit 8d44dac

Please sign in to comment.