2022-06-04 03:16:39 +00:00
|
|
|
{ lib, stdenv, fetchurl, autoPatchelfHook, makeDesktopItem, copyDesktopItems, makeWrapper, electron
|
2022-05-09 12:05:53 +00:00
|
|
|
, nodePackages, alsa-lib, gtk3, libdbusmenu, libxshmfence, mesa, nss }:
|
2021-11-01 20:17:46 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "whalebird";
|
2022-09-28 04:00:06 +00:00
|
|
|
version = "4.6.5";
|
2021-11-01 20:17:46 +00:00
|
|
|
|
2022-06-04 03:16:39 +00:00
|
|
|
src = let
|
|
|
|
downloads = "https://github.com/h3poteto/whalebird-desktop/releases/download/${version}";
|
|
|
|
in
|
|
|
|
if stdenv.system == "x86_64-linux" then
|
|
|
|
fetchurl {
|
|
|
|
url = downloads + "/Whalebird-${version}-linux-x64.tar.bz2";
|
2022-09-28 04:00:06 +00:00
|
|
|
sha256 = "sha256-WeZnWEwRbZEnYkLwWf6EC3ZbwI+Cr59czdKxxG/Lhn0=";
|
2022-06-04 03:16:39 +00:00
|
|
|
}
|
|
|
|
else if stdenv.system == "aarch64-linux" then
|
|
|
|
fetchurl {
|
|
|
|
url = downloads + "/Whalebird-${version}-linux-arm64.tar.bz2";
|
2022-09-28 04:00:06 +00:00
|
|
|
sha256 = "sha256-5iKVP7zOci5X+EhnfJx5cZ5RiqZKz1pFLDUwZncynUc=";
|
2022-06-04 03:16:39 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
throw "Whalebird is not supported for ${stdenv.system}";
|
2021-11-01 20:17:46 +00:00
|
|
|
|
|
|
|
nativeBuildInputs = [
|
|
|
|
autoPatchelfHook
|
|
|
|
makeWrapper
|
2022-06-04 03:16:39 +00:00
|
|
|
copyDesktopItems
|
2021-11-01 20:17:46 +00:00
|
|
|
nodePackages.asar
|
|
|
|
];
|
|
|
|
|
2022-05-09 12:05:53 +00:00
|
|
|
buildInputs = [ alsa-lib gtk3 libdbusmenu libxshmfence mesa nss ];
|
2021-11-01 20:17:46 +00:00
|
|
|
|
2022-06-04 03:16:39 +00:00
|
|
|
desktopItems = [
|
|
|
|
(makeDesktopItem {
|
|
|
|
desktopName = "Whalebird";
|
|
|
|
comment = meta.description;
|
|
|
|
categories = [ "Network" ];
|
|
|
|
exec = "whalebird";
|
|
|
|
icon = "whalebird";
|
|
|
|
name = "whalebird";
|
|
|
|
})
|
|
|
|
];
|
2021-11-01 20:17:46 +00:00
|
|
|
|
|
|
|
unpackPhase = ''
|
2022-06-04 03:16:39 +00:00
|
|
|
mkdir -p opt
|
|
|
|
tar -xf ${src} -C opt
|
|
|
|
# remove the version/target suffix from the untar'd directory
|
|
|
|
mv opt/Whalebird-* opt/Whalebird
|
2021-11-01 20:17:46 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
buildPhase = ''
|
|
|
|
runHook preBuild
|
|
|
|
|
|
|
|
# Necessary steps to find the tray icon
|
|
|
|
asar extract opt/Whalebird/resources/app.asar "$TMP/work"
|
|
|
|
substituteInPlace $TMP/work/dist/electron/main.js \
|
2022-09-28 04:00:06 +00:00
|
|
|
--replace "Ao,\"tray_icon.png\"" "\"$out/opt/Whalebird/resources/build/icons/tray_icon.png\""
|
2021-11-01 20:17:46 +00:00
|
|
|
asar pack --unpack='{*.node,*.ftz,rect-overlay}' "$TMP/work" opt/Whalebird/resources/app.asar
|
|
|
|
|
|
|
|
runHook postBuild
|
|
|
|
'';
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
runHook preInstall
|
|
|
|
|
|
|
|
mkdir $out
|
2022-06-04 03:16:39 +00:00
|
|
|
mv opt $out
|
|
|
|
|
|
|
|
# install icons
|
|
|
|
for icon in $out/opt/Whalebird/resources/build/icons/*.png; do
|
|
|
|
mkdir -p "$out/share/icons/hicolor/$(basename $icon .png)/apps"
|
|
|
|
ln -s "$icon" "$out/share/icons/hicolor/$(basename $icon .png)/apps/whalebird.png"
|
|
|
|
done
|
2021-11-01 20:17:46 +00:00
|
|
|
|
|
|
|
makeWrapper ${electron}/bin/electron $out/bin/whalebird \
|
2022-06-04 03:16:39 +00:00
|
|
|
--add-flags $out/opt/Whalebird/resources/app.asar \
|
2022-09-23 19:19:37 +00:00
|
|
|
--add-flags "\''${NIXOS_OZONE_WL:+\''${WAYLAND_DISPLAY:+--ozone-platform-hint=auto --enable-features=WaylandWindowDecorations}}"
|
2021-11-01 20:17:46 +00:00
|
|
|
|
|
|
|
runHook postInstall
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Electron based Mastodon, Pleroma and Misskey client for Windows, Mac and Linux";
|
|
|
|
homepage = "https://whalebird.social";
|
2022-06-04 22:19:25 +00:00
|
|
|
sourceProvenance = with sourceTypes; [ binaryNativeCode ];
|
2021-11-01 20:17:46 +00:00
|
|
|
license = licenses.mit;
|
2022-06-04 03:16:39 +00:00
|
|
|
maintainers = with maintainers; [ wolfangaukang colinsane ];
|
|
|
|
platforms = [ "x86_64-linux" "aarch64-linux" ];
|
2021-11-01 20:17:46 +00:00
|
|
|
};
|
|
|
|
}
|