mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 19:21:04 +00:00
Sylk: rename to sylk (#320306)
* Sylk: rename to sylk * sylk: fix meta.sourceProvenance --------- Co-authored-by: superherointj <5861043+superherointj@users.noreply.github.com>
This commit is contained in:
parent
b24cf9b536
commit
95fb89c652
|
@ -1,12 +1,8 @@
|
|||
{ appimageTools, fetchurl, lib }:
|
||||
|
||||
let
|
||||
pname = "Sylk";
|
||||
version = "3.0.1";
|
||||
in
|
||||
|
||||
appimageTools.wrapType2 rec {
|
||||
inherit pname version;
|
||||
pname = "sylk";
|
||||
version = "3.0.1";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://download.ag-projects.com/Sylk/Sylk-${version}-x86_64.AppImage";
|
||||
|
@ -17,12 +13,13 @@ appimageTools.wrapType2 rec {
|
|||
export LC_ALL=C.UTF-8
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "Sylk WebRTC client";
|
||||
meta = {
|
||||
description = "Desktop client for SylkServer, a multiparty conferencing tool";
|
||||
homepage = "https://sylkserver.com/";
|
||||
license = licenses.agpl3Plus;
|
||||
maintainers = with maintainers; [ zimbatm ];
|
||||
platforms = [ "i386-linux" "x86_64-linux" ];
|
||||
license = lib.licenses.agpl3Plus;
|
||||
mainProgram = "Sylk";
|
||||
maintainers = with lib.maintainers; [ zimbatm ];
|
||||
platforms = [ "i386-linux" "x86_64-linux" ];
|
||||
sourceProvenance = [ lib.sourceTypes.binaryNativeCode ];
|
||||
};
|
||||
}
|
|
@ -1277,6 +1277,7 @@ mapAliases ({
|
|||
supertux-editor = throw "'supertux-editor' has been removed, as it was broken and unmaintained"; # Added 2023-12-22
|
||||
swift-im = throw "swift-im has been removed as it is unmaintained and depends on deprecated Python 2 / Qt WebKit"; # Added 2023-01-06
|
||||
swtpm-tpm2 = swtpm; # Added 2021-02-26
|
||||
Sylk = sylk; # Added 2024-06-12
|
||||
syncthing-cli = syncthing; # Added 2021-04-06
|
||||
syncthingtray-qt6 = syncthingtray; # Added 2024-03-06
|
||||
|
||||
|
|
|
@ -13325,8 +13325,6 @@ with pkgs;
|
|||
|
||||
systrayhelper = callPackage ../tools/misc/systrayhelper { };
|
||||
|
||||
Sylk = callPackage ../applications/networking/Sylk { };
|
||||
|
||||
privoxy = callPackage ../tools/networking/privoxy {
|
||||
w3m = w3m-batch;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue