2019-11-09 07:05:02 +00:00
|
|
|
{ lib
|
|
|
|
, fetchurl
|
|
|
|
, appimageTools
|
|
|
|
}:
|
|
|
|
|
|
|
|
let
|
|
|
|
pname = "zulip";
|
2020-04-02 03:30:40 +01:00
|
|
|
version = "5.0.0";
|
2019-11-09 07:05:02 +00:00
|
|
|
name = "${pname}-${version}";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/zulip/zulip-desktop/releases/download/v${version}/Zulip-${version}-x86_64.AppImage";
|
2020-04-02 03:30:40 +01:00
|
|
|
sha256 = "0qwlhkzb3lbzk3piyfx8nn827kcafrl3j1nxrn18f8px9gwasinz";
|
2019-11-09 07:05:02 +00:00
|
|
|
name="${pname}-${version}.AppImage";
|
|
|
|
};
|
|
|
|
|
|
|
|
appimageContents = appimageTools.extractType2 {
|
|
|
|
inherit name src;
|
|
|
|
};
|
|
|
|
|
|
|
|
in appimageTools.wrapType2 {
|
|
|
|
inherit name src;
|
|
|
|
|
|
|
|
extraInstallCommands = ''
|
|
|
|
mv $out/bin/${name} $out/bin/${pname}
|
|
|
|
install -m 444 -D ${appimageContents}/zulip.desktop $out/share/applications/zulip.desktop
|
|
|
|
install -m 444 -D ${appimageContents}/usr/share/icons/hicolor/512x512/apps/zulip.png \
|
|
|
|
$out/share/icons/hicolor/512x512/apps/zulip.png
|
|
|
|
substituteInPlace $out/share/applications/zulip.desktop \
|
|
|
|
--replace 'Exec=AppRun' 'Exec=${pname}'
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Desktop client for Zulip Chat";
|
|
|
|
homepage = https://zulipchat.com;
|
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = with maintainers; [ jonafato ];
|
|
|
|
platforms = [ "x86_64-linux" ];
|
|
|
|
};
|
|
|
|
}
|