guix-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#61118: [PATCH] gnu: Add emacs-lingva.


From: Nicolas Goaziou
Subject: bug#61118: [PATCH] gnu: Add emacs-lingva.
Date: Sun, 29 Jan 2023 15:42:39 +0100
User-agent: Gnus/5.13 (Gnus v5.13) Emacs/28.2 (gnu/linux)

Hello,

Cayetano Santos via Guix-patches via <guix-patches@gnu.org> writes:

> * gnu/packages/emacs-xyz.scm (emacs-lingva): New variable.

Thank you. I applied it with the minor changes below.

> +(define-public emacs-lingva
> +  (let ((version "0.2")
> +        (revision "1")
> +        (commit "6c33594068fa33de622172503deeec6778d9c744"))

We usually hard-code version in `git-version' call below, so I removed
the version binding here.

> +    (package
> +      (name "emacs-lingva")
> +      (version
> +       (git-version version revision commit))
> +      (source
> +       (origin
> +         (method git-fetch)
> +         (uri
> +          (git-reference
> +           (url "https://codeberg.org/martianh/lingva.el";)
> +           (commit commit)))
> +         (file-name
> +          (git-file-name name version))
> +         (sha256
> +          (base32
> +           "0r2f4wrd2v67m7198z0194pg853hbq4vvpd3x96y5ikbypywf426"))))
> +      (build-system emacs-build-system)
> +      (home-page "https://codeberg.org/martianh/lingva.el";)
> +      (synopsis "Interact with the lingva.ml API from within Emacs")
> +      (description "This is a basic interface to the lingva.ml API, which 
> allows you to obtain translations of texts from Google Translate without any 
> tracking.")

I filled the description to make it fit under 80 characters.

Regards,
-- 
Nicolas Goaziou





reply via email to

[Prev in Thread] Current Thread [Next in Thread]