2022-06-16 17:23:12 +00:00
|
|
|
{ appimageTools, fetchurl, lib }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
appimageTools.wrapType2 rec {
|
2024-06-20 14:57:18 +00:00
|
|
|
pname = "sylk";
|
|
|
|
version = "3.0.1";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://download.ag-projects.com/Sylk/Sylk-${version}-x86_64.AppImage";
|
2021-02-13 14:23:35 +00:00
|
|
|
hash = "sha256-VgepO7LHFmNKq/H0RFcIkafgtiVGt8K/LdiCO5Dw2s4=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
profile = ''
|
|
|
|
export LC_ALL=C.UTF-8
|
|
|
|
'';
|
|
|
|
|
2024-06-20 14:57:18 +00:00
|
|
|
meta = {
|
|
|
|
description = "Desktop client for SylkServer, a multiparty conferencing tool";
|
2020-10-07 09:15:18 +00:00
|
|
|
homepage = "https://sylkserver.com/";
|
2024-06-20 14:57:18 +00:00
|
|
|
license = lib.licenses.agpl3Plus;
|
2024-01-02 11:29:13 +00:00
|
|
|
mainProgram = "Sylk";
|
2024-06-20 14:57:18 +00:00
|
|
|
maintainers = with lib.maintainers; [ zimbatm ];
|
|
|
|
platforms = [ "i386-linux" "x86_64-linux" ];
|
|
|
|
sourceProvenance = [ lib.sourceTypes.binaryNativeCode ];
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
}
|