beeper: 3.109.1 -> 3.110.1 (#361944)

* beeper: Use download.beeper.com in update script

Related discussion:
- https://github.com/NixOS/nixpkgs/pull/361944#issuecomment-2521919969
- https://github.com/NixOS/nixpkgs/pull/241992#issuecomment-1730304937

* beeper: 1.109.1 -> 3.110.1

authored by Jiří Štefka and committed by GitHub 5a4fbaa3 daba6752

+4 -5
+4 -5
pkgs/by-name/be/beeper/package.nix
··· 10 }: 11 let 12 pname = "beeper"; 13 - version = "3.109.1"; 14 src = fetchurl { 15 - url = "https://download.todesktop.com/2003241lzgn20jd/beeper-3.109.1-build-240923466rji1i4-x86_64.AppImage"; 16 - hash = "sha256-RXpoOgnoPmNID5Jx/lNxqsHsifFSS9dZzhjSu8kGtXc="; 17 }; 18 appimage = appimageTools.wrapType2 { 19 inherit version pname src; ··· 58 set -o errexit 59 latestLinux="$(curl -s https://download.todesktop.com/2003241lzgn20jd/latest-linux.yml)" 60 version="$(echo "$latestLinux" | yq -r .version)" 61 - filename="$(echo "$latestLinux" | yq -r '.files[] | .url | select(. | endswith(".AppImage"))')" 62 - update-source-version beeper "$version" "" "https://download.todesktop.com/2003241lzgn20jd/$filename" --source-key=src.src 63 ''; 64 }); 65 };
··· 10 }: 11 let 12 pname = "beeper"; 13 + version = "3.110.1"; 14 src = fetchurl { 15 + url = "https://download.beeper.com/versions/3.110.1/linux/appImage/x64"; 16 + hash = "sha256-AwPYwA93zOxExxhkLpCUKsQC/ylKSAygdHBUjd5ZKZk="; 17 }; 18 appimage = appimageTools.wrapType2 { 19 inherit version pname src; ··· 58 set -o errexit 59 latestLinux="$(curl -s https://download.todesktop.com/2003241lzgn20jd/latest-linux.yml)" 60 version="$(echo "$latestLinux" | yq -r .version)" 61 + update-source-version beeper "$version" "" "https://download.beeper.com/versions/$version/linux/appImage/x64" --source-key=src.src 62 ''; 63 }); 64 };