gnu: Add emacs-google-translate.
* gnu/packages/emacs.scm (emacs-google-translate): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
This commit is contained in:
parent
a62d872fdf
commit
2dcea9b446
|
@ -10863,3 +10863,26 @@ A screenshot is taken for every user action. Call
|
||||||
@code{gif-screencast-stop} (<f9> by default) to finish recording and create
|
@code{gif-screencast-stop} (<f9> by default) to finish recording and create
|
||||||
the GIF result.")
|
the GIF result.")
|
||||||
(license license:gpl3+))))
|
(license license:gpl3+))))
|
||||||
|
|
||||||
|
(define-public emacs-google-translate
|
||||||
|
(let ((commit "d8b84a8359fcc697114d1298840e9a45b111c974"))
|
||||||
|
(package
|
||||||
|
(name "emacs-google-translate")
|
||||||
|
(version (git-version "0.11.14" "1" commit))
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/atykhonov/google-translate")
|
||||||
|
(commit commit)))
|
||||||
|
(file-name (string-append name "-" version "-checkout"))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"1qs4hcg1i2m487z50nnwgs0sa2xj4lpgizbrvi2yda0mf3m75fgc"))))
|
||||||
|
(build-system emacs-build-system)
|
||||||
|
(home-page "https://github.com/atykhonov/google-translate")
|
||||||
|
(synopsis "Emacs interface to Google Translate")
|
||||||
|
(description
|
||||||
|
"This packages provides an Emacs interface to the Google Translate
|
||||||
|
on-line service.")
|
||||||
|
(license license:gpl3+))))
|
||||||
|
|
Loading…
Reference in New Issue