blob: 8c1a31ba79e594e2ee0f3874c6936603288760cf (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# 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/
'';
}
|