diff options
author | Brett Gilio <brettg@gnu.org> | 2020-07-21 12:51:04 -0500 |
---|---|---|
committer | Brett Gilio <brettg@gnu.org> | 2020-07-21 12:51:04 -0500 |
commit | d4b02a6fba7c364ab7c8d257cf9a32134e71ce3e (patch) | |
tree | 10ae6422650bd3b49b087fa84b9c3215a115a4e0 /gnu/packages/emacs-xyz.scm | |
parent | 1a1369dc3d0ba3e23f1f23581a0d1aac89e0db48 (diff) | |
download | guix-d4b02a6fba7c364ab7c8d257cf9a32134e71ce3e.tar.gz |
gnu: emacs-telega: Patch to use telega-server from Guix.
* gnu/packages/patches/emacs-telega-patch-server-functions.patch: New file. * gnu/local.mk (dist_patch_DATA): Reference new patch. * gnu/packages/emacs-xyz.scm (emacs-telega)[source]: Use new patch, bump revision.
Diffstat (limited to 'gnu/packages/emacs-xyz.scm')
-rw-r--r-- | gnu/packages/emacs-xyz.scm | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 5b68eb548c..94772c3f4c 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -22266,7 +22266,7 @@ fish-completion. It can be used in both Eshell and M-x shell.") ;; Get the current version from `telega-version` in telega.el. ;; or by running M-x telega-version. (let ((commit "5c39c3a81e48222911db75ae30e5a8f8fa34efb5") - (revision "1") + (revision "2") (version "0.6.27")) (package (name "emacs-telega") @@ -22280,7 +22280,9 @@ fish-completion. It can be used in both Eshell and M-x shell.") (sha256 (base32 "0wyycgsb1ja73phs9a2dgi50m2p6sdvx3xdwclfyijx4hzwlv233")) - (patches (search-patches "emacs-telega-test-env.patch")) + (patches (search-patches + "emacs-telega-patch-server-functions.patch" + "emacs-telega-test-env.patch")) (file-name (git-file-name name version)))) (build-system gnu-build-system) (arguments |