lol

telegram-cli: remove

authored by

Guilherme Ramos Costa Paixao and committed by
Anderson Torres
0fa6394c 826b2b2d

+1 -61
-59
pkgs/applications/networking/instant-messengers/telegram/telegram-cli/default.nix
··· 1 - { stdenv, fetchFromGitHub, fetchpatch, jansson, lib, libconfig, libevent, libgcrypt, lua, lua53Packages 2 - , makeWrapper, openssl, pkg-config, python3, readline, zlib 3 - }: 4 - 5 - stdenv.mkDerivation rec { 6 - pname = "telegram-cli"; 7 - version = "20200106"; 8 - 9 - src = fetchFromGitHub { 10 - owner = "kenorb-contrib"; 11 - repo = "tg"; 12 - rev = "refs/tags/${version}"; 13 - sha256 = "sha256-wYBPr2b8IOycO9y/CNyGjnRsyGyYl3oiXYtTzwTurVA="; 14 - fetchSubmodules = true; 15 - }; 16 - 17 - patches = [ 18 - # Pull patch pending upstream upstream inclusion for -fno-common toolchains: 19 - # https://github.com/kenorb-contrib/tg/pull/61 20 - (fetchpatch { 21 - name = "fno-common.patch"; 22 - url = "https://github.com/kenorb-contrib/tg/commit/aad2e644fffa16066b227741d54de31bddb04ff8.patch"; 23 - sha256 = "sha256-LAa5J4BVj3QCiDSs+p2bynDroMSIqCeexQvrgaDl6OE="; 24 - }) 25 - ]; 26 - 27 - buildInputs = [ 28 - jansson 29 - libconfig 30 - libevent 31 - libgcrypt 32 - lua 33 - lua53Packages.lgi 34 - openssl 35 - python3 36 - readline 37 - zlib 38 - ]; 39 - nativeBuildInputs = [ 40 - pkg-config 41 - makeWrapper 42 - ]; 43 - 44 - installPhase = '' 45 - runHook preInstall 46 - install -Dm755 ./bin/telegram-cli $out/bin/telegram-cli-keyless 47 - install -Dm644 ./tg-server.pub -t $out/share/telegram-cli 48 - makeWrapper $out/bin/telegram-cli-keyless $out/bin/telegram-cli \ 49 - --add-flags "-k $out/share/telegram-cli/tg-server.pub" 50 - runHook postInstall 51 - ''; 52 - 53 - meta = with lib; { 54 - description = "Command-line interface for Telegram, that uses readline interface, it's a client implementation of TGL library"; 55 - downloadPage = "https://github.com/kenorb-contrib/tg"; 56 - license = licenses.gpl2Only; 57 - maintainers = with maintainers; [ ]; 58 - }; 59 - }
+1
pkgs/top-level/aliases.nix
··· 1670 1670 tdesktop = telegram-desktop; # Added 2023-04-07 1671 1671 tdm = throw "tdm has been removed because nobody can figure out how to fix OpenAL integration. Use precompiled binary and `steam-run` instead"; 1672 1672 teleconsole = throw "teleconsole is archived by upstream"; # Added 2022-04-05 1673 + telegram-cli = throw "telegram-cli was removed because it was broken and abandoned upstream"; # Added 2023-07-28 1673 1674 telepathy-qt = throw "telepathy-qt no longer supports Qt 4. Please use libsForQt5.telepathy instead"; # Added 2020-07-02 1674 1675 telepathy_farstream = throw "'telepathy_farstream' has been renamed to/replaced by 'telepathy-farstream'"; # Converted to throw 2022-02-22 1675 1676 telepathy_gabble = throw "'telepathy_gabble' has been renamed to/replaced by 'telepathy-gabble'"; # Converted to throw 2022-02-22
-2
pkgs/top-level/all-packages.nix
··· 35351 35351 35352 35352 tektoncd-cli = callPackage ../applications/networking/cluster/tektoncd-cli { }; 35353 35353 35354 - telegram-cli = callPackage ../applications/networking/instant-messengers/telegram/telegram-cli { }; 35355 - 35356 35354 tg = python3Packages.callPackage ../applications/networking/instant-messengers/telegram/tg { }; 35357 35355 35358 35356 telepathy-gabble = callPackage ../applications/networking/instant-messengers/telepathy/gabble { };