about summary refs log tree commit diff
path: root/third_party
diff options
context:
space:
mode:
authorVincent Ambo <mail@tazj.in>2020-08-14T13·19+0100
committertazjin <mail@tazj.in>2020-08-15T12·11+0000
commitcbebc75d94f02659c8d90211fa6acd16c606e6a4 (patch)
tree4632caf049f44840bb5dc8e3b5bb7ae61432e15b /third_party
parent1a48f390784a30df3e7e8259e71866d6916c5231 (diff)
chore(3p): Remove telega derivation r/1656
The upstream telega.el derivation (under emacsPackages) now includes
the server component.

Change-Id: I49d85ea16d2fce10a505e2459fcd396706e39923
Reviewed-on: https://cl.tvl.fyi/c/depot/+/1748
Tested-by: BuildkiteCI
Reviewed-by: glittershark <grfn@gws.fyi>
Diffstat (limited to 'third_party')
-rw-r--r--third_party/telega/default.nix22
1 files changed, 0 insertions, 22 deletions
diff --git a/third_party/telega/default.nix b/third_party/telega/default.nix
deleted file mode 100644
index 8c1a31ba79..0000000000
--- a/third_party/telega/default.nix
+++ /dev/null
@@ -1,22 +0,0 @@
-# Telega is an Emacs client for Telegram. It requires a native server
-# component to run correctly, which is built by this derivation.
-{ pkgs, ... }:
-
-with pkgs;
-
-stdenv.mkDerivation {
-  name = "telega";
-  buildInputs = [ tdlib ];
-
-  src = fetchFromGitHub {
-    owner = "zevlg";
-    repo = "telega.el";
-    rev = "76ffa52cd36b9ba3236d0f4e0c213495d3609212";
-    sha256 = "15w6yj8n75yh6zhra4qw5pkfc8asgrwh6m8dz1vax2ma6yy2ds2r";
-  } + "/server";
-
-  installPhase = ''
-    mkdir -p $out/bin
-    mv telega-server $out/bin/
-  '';
-}