gnu: emacs-telega: Separate server and lisp packages.
* gnu/packages/emacs-xyz.scm (emacs-telega-server): Use own version. (emacs-telega): Remove inheritance. Signed-off-by: Andrew Tropin <andrew@trop.in>master
parent
e209437ca2
commit
01989c5f45
|
@ -35388,11 +35388,11 @@ other @code{helm-type-file} sources such as @code{helm-locate}.")
|
|||
(license license:gpl3+)))
|
||||
|
||||
(define-public emacs-telega-server
|
||||
(let ((commit "009e5ce9d393aa049bb3b1182306db4b5b85833b")
|
||||
(let ((commit "879a8c7afc8967942613b6b898d9ea8c1f3641bf")
|
||||
(revision "0"))
|
||||
(package
|
||||
(name "emacs-telega-server")
|
||||
(version (git-version "0.8.290" revision commit))
|
||||
(version (git-version "0.8.2" revision commit))
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
|
@ -35400,11 +35400,8 @@ other @code{helm-type-file} sources such as @code{helm-locate}.")
|
|||
(url "https://github.com/zevlg/telega.el")
|
||||
(commit commit)))
|
||||
(sha256
|
||||
(base32 "06k2qkxzq3l3cdqr70zrxrnm3q6qp9nw3zgm3p65nmx86ky1q72f"))
|
||||
(file-name (git-file-name "emacs-telega" version))
|
||||
(patches
|
||||
(search-patches "emacs-telega-path-placeholder.patch"
|
||||
"emacs-telega-test-env.patch"))))
|
||||
(base32 "1ic14hzzgjxpky1r3mz4v72si9hw8cw72420a9lnpdaiw99l8q7h"))
|
||||
(file-name (git-file-name "emacs-telega" version))))
|
||||
(build-system gnu-build-system)
|
||||
(arguments
|
||||
(list
|
||||
|
@ -35438,9 +35435,23 @@ service, and connect it with Emacs via inter-process communication.")
|
|||
(license license:gpl3+))))
|
||||
|
||||
(define-public emacs-telega
|
||||
(let ((commit "009e5ce9d393aa049bb3b1182306db4b5b85833b")
|
||||
(revision "1"))
|
||||
(package
|
||||
(inherit emacs-telega-server)
|
||||
(name "emacs-telega")
|
||||
(version (git-version "0.8.290" revision commit))
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/zevlg/telega.el")
|
||||
(commit commit)))
|
||||
(sha256
|
||||
(base32 "06k2qkxzq3l3cdqr70zrxrnm3q6qp9nw3zgm3p65nmx86ky1q72f"))
|
||||
(file-name (git-file-name "emacs-telega" version))
|
||||
(patches
|
||||
(search-patches "emacs-telega-path-placeholder.patch"
|
||||
"emacs-telega-test-env.patch"))))
|
||||
(build-system emacs-build-system)
|
||||
(arguments
|
||||
(list
|
||||
|
@ -35483,9 +35494,11 @@ service, and connect it with Emacs via inter-process communication.")
|
|||
(propagated-inputs
|
||||
(list emacs-visual-fill-column emacs-company
|
||||
emacs-rainbow-identifiers))
|
||||
(home-page "https://zevlg.github.io/telega.el/")
|
||||
(synopsis "GNU Emacs client for the Telegram messenger")
|
||||
(description "Telega is a full-featured, unofficial GNU Emacs-based client
|
||||
for the Telegram messaging platform.")))
|
||||
for the Telegram messaging platform.")
|
||||
(license license:gpl3+))))
|
||||
|
||||
(define-public emacs-telega-contrib
|
||||
(package
|
||||
|
|
Reference in New Issue