arcanechat-tui: init at 0.11.1

deltachat-cursed was renamed to arcanechat-tui

Changed files
+52 -52
pkgs
by-name
ar
arcanechat-tui
de
deltachat-cursed
top-level
+51
pkgs/by-name/ar/arcanechat-tui/package.nix
···
+
{
+
lib,
+
python3,
+
fetchFromGitHub,
+
testers,
+
arcanechat-tui,
+
}:
+
+
python3.pkgs.buildPythonApplication rec {
+
pname = "arcanechat-tui";
+
version = "0.11.1";
+
pyproject = true;
+
+
src = fetchFromGitHub {
+
owner = "ArcaneChat";
+
repo = "arcanechat-tui";
+
tag = "v${version}";
+
hash = "sha256-ARk0WkpJ2VhIdOHQzYmmsuherABNgqwjwnPWk92y9yA=";
+
};
+
+
build-system = with python3.pythonOnBuildForHost.pkgs; [
+
setuptools
+
setuptools-scm
+
];
+
+
dependencies = with python3.pkgs; [
+
appdirs
+
deltachat2
+
urwid
+
urwid-readline
+
];
+
+
doCheck = false; # no tests implemented
+
+
passthru.tests = {
+
version = testers.testVersion rec {
+
package = arcanechat-tui;
+
command = ''
+
HOME="$TEMP" ${lib.getExe package} --version
+
'';
+
};
+
};
+
+
meta = {
+
description = "Lightweight Delta Chat client";
+
homepage = "https://github.com/ArcaneChat/arcanechat-tui";
+
license = lib.licenses.gpl3Plus;
+
mainProgram = "arcanechat-tui";
+
maintainers = with lib.maintainers; [ dotlambda ];
+
};
+
}
-52
pkgs/by-name/de/deltachat-cursed/package.nix
···
-
{
-
lib,
-
python3,
-
fetchFromGitHub,
-
testers,
-
deltachat-cursed,
-
}:
-
-
python3.pkgs.buildPythonApplication rec {
-
pname = "deltachat-cursed";
-
version = "0.10.0";
-
-
pyproject = true;
-
-
src = fetchFromGitHub {
-
owner = "adbenitez";
-
repo = "deltachat-cursed";
-
rev = "v${version}";
-
hash = "sha256-KCPIZf/8Acp9syFN1IHbf8hQrjk0yzniff+dVSSM/Ro=";
-
};
-
-
build-system = with python3.pythonOnBuildForHost.pkgs; [
-
setuptools
-
setuptools-scm
-
];
-
-
dependencies = with python3.pkgs; [
-
appdirs
-
deltachat2
-
urwid
-
urwid-readline
-
];
-
-
doCheck = false; # no tests implemented
-
-
passthru.tests = {
-
version = testers.testVersion rec {
-
package = deltachat-cursed;
-
command = ''
-
HOME="$TEMP" ${lib.getExe package} --version
-
'';
-
};
-
};
-
-
meta = with lib; {
-
description = "Lightweight Delta Chat client";
-
homepage = "https://github.com/adbenitez/deltachat-cursed";
-
license = licenses.gpl3Plus;
-
mainProgram = "curseddelta";
-
maintainers = with maintainers; [ dotlambda ];
-
};
-
}
+1
pkgs/top-level/aliases.nix
···
deadpixi-sam = deadpixi-sam-unstable;
debugedit-unstable = throw "'debugedit-unstable' has been renamed to/replaced by 'debugedit'"; # Converted to throw 2024-10-17
+
deltachat-cursed = arcanechat-tui; # added 2025-02-25
deltachat-electron = throw "'deltachat-electron' has been renamed to/replaced by 'deltachat-desktop'"; # Converted to throw 2024-10-17
demjson = with python3Packages; toPythonApplication demjson; # Added 2022-01-18