lol

arcanechat-tui: init at 0.11.1

deltachat-cursed was renamed to arcanechat-tui

+52 -52
+51
pkgs/by-name/ar/arcanechat-tui/package.nix
··· 1 + { 2 + lib, 3 + python3, 4 + fetchFromGitHub, 5 + testers, 6 + arcanechat-tui, 7 + }: 8 + 9 + python3.pkgs.buildPythonApplication rec { 10 + pname = "arcanechat-tui"; 11 + version = "0.11.1"; 12 + pyproject = true; 13 + 14 + src = fetchFromGitHub { 15 + owner = "ArcaneChat"; 16 + repo = "arcanechat-tui"; 17 + tag = "v${version}"; 18 + hash = "sha256-ARk0WkpJ2VhIdOHQzYmmsuherABNgqwjwnPWk92y9yA="; 19 + }; 20 + 21 + build-system = with python3.pythonOnBuildForHost.pkgs; [ 22 + setuptools 23 + setuptools-scm 24 + ]; 25 + 26 + dependencies = with python3.pkgs; [ 27 + appdirs 28 + deltachat2 29 + urwid 30 + urwid-readline 31 + ]; 32 + 33 + doCheck = false; # no tests implemented 34 + 35 + passthru.tests = { 36 + version = testers.testVersion rec { 37 + package = arcanechat-tui; 38 + command = '' 39 + HOME="$TEMP" ${lib.getExe package} --version 40 + ''; 41 + }; 42 + }; 43 + 44 + meta = { 45 + description = "Lightweight Delta Chat client"; 46 + homepage = "https://github.com/ArcaneChat/arcanechat-tui"; 47 + license = lib.licenses.gpl3Plus; 48 + mainProgram = "arcanechat-tui"; 49 + maintainers = with lib.maintainers; [ dotlambda ]; 50 + }; 51 + }
-52
pkgs/by-name/de/deltachat-cursed/package.nix
··· 1 - { 2 - lib, 3 - python3, 4 - fetchFromGitHub, 5 - testers, 6 - deltachat-cursed, 7 - }: 8 - 9 - python3.pkgs.buildPythonApplication rec { 10 - pname = "deltachat-cursed"; 11 - version = "0.10.0"; 12 - 13 - pyproject = true; 14 - 15 - src = fetchFromGitHub { 16 - owner = "adbenitez"; 17 - repo = "deltachat-cursed"; 18 - rev = "v${version}"; 19 - hash = "sha256-KCPIZf/8Acp9syFN1IHbf8hQrjk0yzniff+dVSSM/Ro="; 20 - }; 21 - 22 - build-system = with python3.pythonOnBuildForHost.pkgs; [ 23 - setuptools 24 - setuptools-scm 25 - ]; 26 - 27 - dependencies = with python3.pkgs; [ 28 - appdirs 29 - deltachat2 30 - urwid 31 - urwid-readline 32 - ]; 33 - 34 - doCheck = false; # no tests implemented 35 - 36 - passthru.tests = { 37 - version = testers.testVersion rec { 38 - package = deltachat-cursed; 39 - command = '' 40 - HOME="$TEMP" ${lib.getExe package} --version 41 - ''; 42 - }; 43 - }; 44 - 45 - meta = with lib; { 46 - description = "Lightweight Delta Chat client"; 47 - homepage = "https://github.com/adbenitez/deltachat-cursed"; 48 - license = licenses.gpl3Plus; 49 - mainProgram = "curseddelta"; 50 - maintainers = with maintainers; [ dotlambda ]; 51 - }; 52 - }
+1
pkgs/top-level/aliases.nix
··· 361 361 deadpixi-sam = deadpixi-sam-unstable; 362 362 363 363 debugedit-unstable = throw "'debugedit-unstable' has been renamed to/replaced by 'debugedit'"; # Converted to throw 2024-10-17 364 + deltachat-cursed = arcanechat-tui; # added 2025-02-25 364 365 deltachat-electron = throw "'deltachat-electron' has been renamed to/replaced by 'deltachat-desktop'"; # Converted to throw 2024-10-17 365 366 366 367 demjson = with python3Packages; toPythonApplication demjson; # Added 2022-01-18