about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/editors/emacs/elisp-packages/manual-packages/matrix-client/default.nix
blob: d8efbb9e9cb365f92a5773b92625fad261b79c02 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{ lib
, melpaBuild
, fetchFromGitHub
, fetchpatch
, writeText
# Emacs packages
, _map
, a
, anaphora
, cl-lib
, dash
, dash-functional
, esxml
, f
, frame-purpose
, ht
, ov
, rainbow-identifiers
, request
, s
, tracking
}:

let
  rev = "d2ac55293c96d4c95971ed8e2a3f6f354565c5ed";
in melpaBuild {
  pname = "matrix-client";
  version = "0.3.0";

  commit = rev;

  src = fetchFromGitHub {
    owner = "alphapapa";
    repo = "matrix-client.el";
    inherit rev;
    sha256 = "1scfv1502yg7x4bsl253cpr6plml1j4d437vci2ggs764sh3rcqq";
  };

  patches = [
    # Fix: avatar loading when imagemagick support is not available
    (fetchpatch {
      url = "https://github.com/alphapapa/matrix-client.el/commit/5f49e615c7cf2872f48882d3ee5c4a2bff117d07.patch";
      sha256 = "07bvid7s1nv1377p5n61q46yww3m1w6bw4vnd4iyayw3fby1lxbm";
    })
  ];

  packageRequires = [
    _map
    a
    anaphora
    cl-lib
    dash
    dash-functional
    esxml
    f
    frame-purpose
    ht
    ov
    rainbow-identifiers
    request
    s
    tracking
  ];

  recipe = writeText "recipe" ''
    (matrix-client :repo "alphapapa/matrix-client.el" :fetcher github)
  '';

  meta = {
    description = "A chat client and API wrapper for Matrix.org";
    license = lib.licenses.gpl3Plus;
  };
}