summary refs log tree commit diff
path: root/pkgs/applications/networking/instant-messengers/telegram/telegram-cli
diff options
context:
space:
mode:
authorRobin Gloster <mail@glob.in>2019-08-21 21:03:50 +0200
committerRobin Gloster <mail@glob.in>2019-08-21 21:03:50 +0200
commit57353fcee6f9c1b628a8714135a6f572e614d185 (patch)
treecd96d6a04af47d0b9059bbba95178bfe8754ea2b /pkgs/applications/networking/instant-messengers/telegram/telegram-cli
parentf651422a25bc8d130baa26c68c7ed8fe074e2b5d (diff)
downloadnixpkgs-57353fcee6f9c1b628a8714135a6f572e614d185.tar
nixpkgs-57353fcee6f9c1b628a8714135a6f572e614d185.tar.gz
nixpkgs-57353fcee6f9c1b628a8714135a6f572e614d185.tar.bz2
nixpkgs-57353fcee6f9c1b628a8714135a6f572e614d185.tar.lz
nixpkgs-57353fcee6f9c1b628a8714135a6f572e614d185.tar.xz
nixpkgs-57353fcee6f9c1b628a8714135a6f572e614d185.tar.zst
nixpkgs-57353fcee6f9c1b628a8714135a6f572e614d185.zip
telegram-cli: remove
Dead project, broken with openssl 1.1
Diffstat (limited to 'pkgs/applications/networking/instant-messengers/telegram/telegram-cli')
-rw-r--r--pkgs/applications/networking/instant-messengers/telegram/telegram-cli/default.nix37
1 files changed, 0 insertions, 37 deletions
diff --git a/pkgs/applications/networking/instant-messengers/telegram/telegram-cli/default.nix b/pkgs/applications/networking/instant-messengers/telegram/telegram-cli/default.nix
deleted file mode 100644
index c0b1de893c7..00000000000
--- a/pkgs/applications/networking/instant-messengers/telegram/telegram-cli/default.nix
+++ /dev/null
@@ -1,37 +0,0 @@
-{ stdenv, fetchgit, libconfig, libevent, openssl
-, readline, zlib, lua5_2, python, pkgconfig, jansson
-, runtimeShell
-}:
-
-stdenv.mkDerivation rec {
-  name = "telegram-cli-2016-03-23";
-
-  src = fetchgit {
-    url = "https://github.com/vysheng/tg.git";
-    sha256 = "07sss5cnw2ygd7mp8f5532lmj7qm6ywqf4cjaq5g13i8igzqzwzj";
-    rev = "6547c0b21b977b327b3c5e8142963f4bc246187a";
-  };
-
-  buildInputs = [
-    libconfig libevent openssl readline zlib
-    lua5_2 python pkgconfig jansson
-  ];
-  installPhase = ''
-    mkdir -p $out/bin
-    cp ./bin/telegram-cli $out/bin/telegram-wo-key
-    cp ./tg-server.pub $out/
-    cat > $out/bin/telegram-cli <<EOF
-    #!${runtimeShell}
-    $out/bin/telegram-wo-key -k $out/tg-server.pub "\$@"
-    EOF
-    chmod +x $out/bin/telegram-cli
-  '';
-
-  meta = {
-    description = "Command-line interface for Telegram messenger";
-    homepage = https://telegram.org/;
-    license = stdenv.lib.licenses.gpl2;
-    platforms = stdenv.lib.platforms.linux;
-    maintainers = [ stdenv.lib.maintainers.jagajaga ];
-  };
-}