about summary refs log tree commit diff
path: root/pkgs/applications/networking/Sylk/default.nix
blob: a83742cf937cc0d11287bcf18c769ebb772039c0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{ appimageTools, fetchurl, lib }:

let
  pname = "Sylk";
  version = "3.0.1";
in

appimageTools.wrapType2 rec {
  inherit pname version;

  src = fetchurl {
    url = "http://download.ag-projects.com/Sylk/Sylk-${version}-x86_64.AppImage";
    hash = "sha256-VgepO7LHFmNKq/H0RFcIkafgtiVGt8K/LdiCO5Dw2s4=";
  };

  profile = ''
    export LC_ALL=C.UTF-8
  '';

  meta = with lib; {
    description = "Sylk WebRTC client";
    homepage = "https://sylkserver.com/";
    license = licenses.agpl3Plus;
    maintainers = with maintainers; [ zimbatm ];
    platforms = [ "i386-linux" "x86_64-linux" ];
    mainProgram = "Sylk";
  };
}