Merge pull request #114280 from adisbladis/emacs-matrix-client

emacs.pkgs.matrix-client: init at 0.3.0

authored by

adisbladis and committed by
GitHub
ac4144ec edb5000e

+49
+49
pkgs/applications/editors/emacs-modes/manual-packages.nix
··· 128 }; 129 }; 130 131 org-mac-link = 132 callPackage ./org-mac-link { }; 133
··· 128 }; 129 }; 130 131 + matrix-client = melpaBuild { 132 + pname = "matrix-client"; 133 + version = "0.3.0"; 134 + 135 + src = pkgs.fetchFromGitHub { 136 + owner = "alphapapa"; 137 + repo = "matrix-client.el"; 138 + rev = "d2ac55293c96d4c95971ed8e2a3f6f354565c5ed"; 139 + sha256 = "1scfv1502yg7x4bsl253cpr6plml1j4d437vci2ggs764sh3rcqq"; 140 + }; 141 + 142 + patches = [ 143 + (pkgs.fetchpatch { 144 + url = "https://github.com/alphapapa/matrix-client.el/commit/5f49e615c7cf2872f48882d3ee5c4a2bff117d07.patch"; 145 + sha256 = "07bvid7s1nv1377p5n61q46yww3m1w6bw4vnd4iyayw3fby1lxbm"; 146 + }) 147 + ]; 148 + 149 + packageRequires = [ 150 + anaphora 151 + cl-lib 152 + self.map 153 + dash-functional 154 + esxml 155 + f 156 + ov 157 + tracking 158 + rainbow-identifiers 159 + dash 160 + s 161 + request 162 + frame-purpose 163 + a 164 + ht 165 + ]; 166 + 167 + recipe = pkgs.writeText "recipe" '' 168 + (matrix-client 169 + :repo "alphapapa/matrix-client.el" 170 + :fetcher github) 171 + ''; 172 + 173 + meta = { 174 + description = "A chat client and API wrapper for Matrix.org"; 175 + license = gpl3Plus; 176 + }; 177 + 178 + }; 179 + 180 org-mac-link = 181 callPackage ./org-mac-link { }; 182