90 lines
2.9 KiB
Nix
90 lines
2.9 KiB
Nix
{
|
|
lib,
|
|
fetchurl,
|
|
appimageTools,
|
|
makeWrapper,
|
|
writeShellApplication,
|
|
curl,
|
|
common-updater-scripts,
|
|
}:
|
|
let
|
|
pname = "beeper";
|
|
version = "4.0.821";
|
|
src = fetchurl {
|
|
url = "https://beeper-desktop.download.beeper.com/builds/Beeper-${version}.AppImage";
|
|
hash = "sha256-bBQUCZ9v2MrGpziaSTVNRootXln51arO3NeuIRiMwZA=";
|
|
};
|
|
appimageContents = appimageTools.extract {
|
|
inherit pname version src;
|
|
|
|
postExtract = ''
|
|
# disable creating a desktop file and icon in the home folder during runtime
|
|
linuxConfigFilename=$out/resources/app/build/main/linux-*.mjs
|
|
echo "export function registerLinuxConfig() {}" > $linuxConfigFilename
|
|
|
|
# disable auto update
|
|
sed -i 's/[^=]*\.auto_update_disabled/true/' $out/resources/app/build/main/main-entry-*.mjs
|
|
|
|
# prevent updates
|
|
sed -i -E 's/executeDownload\([^)]+\)\{/executeDownload(){return;/g' $out/resources/app/build/main/main-entry-*.mjs
|
|
|
|
# hide version status element on about page otherwise a error message is shown
|
|
sed -i '$ a\.subview-prefs-about > div:nth-child(2) {display: none;}' $out/resources/app/build/renderer/PrefsPanes-*.css
|
|
'';
|
|
};
|
|
in
|
|
appimageTools.wrapAppImage {
|
|
inherit pname version;
|
|
|
|
src = appimageContents;
|
|
|
|
extraPkgs = pkgs: [ pkgs.libsecret ];
|
|
|
|
extraInstallCommands = ''
|
|
install -Dm 644 ${appimageContents}/beepertexts.png $out/share/icons/hicolor/512x512/apps/beepertexts.png
|
|
install -Dm 644 ${appimageContents}/beepertexts.desktop -t $out/share/applications/
|
|
substituteInPlace $out/share/applications/beepertexts.desktop --replace-fail "AppRun" "beeper"
|
|
|
|
. ${makeWrapper}/nix-support/setup-hook
|
|
wrapProgram $out/bin/beeper \
|
|
--add-flags "\''${NIXOS_OZONE_WL:+\''${WAYLAND_DISPLAY:+--ozone-platform-hint=auto --enable-features=WaylandWindowDecorations --enable-wayland-ime=true}} --no-update" \
|
|
--set APPIMAGE beeper
|
|
'';
|
|
|
|
passthru = {
|
|
updateScript = lib.getExe (writeShellApplication {
|
|
name = "update-beeper";
|
|
runtimeInputs = [
|
|
curl
|
|
common-updater-scripts
|
|
];
|
|
text = ''
|
|
set -o errexit
|
|
latestLinux="$(curl --silent --output /dev/null --write-out "%{redirect_url}\n" https://api.beeper.com/desktop/download/linux/x64/stable/com.automattic.beeper.desktop)"
|
|
version="$(echo "$latestLinux" | grep --only-matching --extended-regexp '[0-9]+\.[0-9]+\.[0-9]+')"
|
|
update-source-version beeper "$version"
|
|
'';
|
|
});
|
|
|
|
# needed for nix-update
|
|
inherit src;
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Universal chat app";
|
|
longDescription = ''
|
|
Beeper is a universal chat app. With Beeper, you can send
|
|
and receive messages to friends, family and colleagues on
|
|
many different chat networks.
|
|
'';
|
|
homepage = "https://beeper.com";
|
|
license = licenses.unfree;
|
|
maintainers = with maintainers; [
|
|
jshcmpbll
|
|
edmundmiller
|
|
zh4ngx
|
|
];
|
|
platforms = [ "x86_64-linux" ];
|
|
};
|
|
}
|