guix-devel
[Top][All Lists]
Advanced

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

Re: [PATCH 2/2] gnu: Add emacs-org-trello.


From: Ricardo Wurmus
Subject: Re: [PATCH 2/2] gnu: Add emacs-org-trello.
Date: Tue, 25 Oct 2016 23:26:36 +0200
User-agent: mu4e 0.9.16; emacs 25.1.1

Hi Roel,

funny, this has also been on my pile of unsubmitted, bit-rotting patches
(because I must use Trello at work and I much rather use org-mode).  I
remember that this wasn’t straight-forward to package and required a lot
more (build-time) inputs.

The cask file says:

(development
 (depends-on "dash-functional")
 (depends-on "dash")
 (depends-on "ert-runner")
 (depends-on "undercover")
 (depends-on "ert")
 (depends-on "ert-expectations")
 (depends-on "el-mock")
 (depends-on "helm"))

Should these be added?

> * gnu/packages/emacs.scm (emacs-org-trello): New variable.
> ---
>  gnu/packages/emacs.scm | 26 ++++++++++++++++++++++++++
>  1 file changed, 26 insertions(+)
>
> diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm
> index 69fd10f..964ba59 100644
> --- a/gnu/packages/emacs.scm
> +++ b/gnu/packages/emacs.scm
> @@ -2086,6 +2086,32 @@ number.")
>  @code{org-mode} to be rendered as UTF-8 characters.")
>      (license license:gpl3+)))
>  
> +(define-public emacs-org-trello
> +  (package
> +    (name "emacs-org-trello")
> +    (version "0.7.9")
> +    (source (origin
> +              (method url-fetch)
> +              (uri (string-append
> +                    "https://github.com/org-trello/org-trello/archive/";
> +                    version ".tar.gz"))
> +              (file-name (string-append name "-" version ".tar.gz"))
> +              (sha256
> +               (base32
> +                "074dka8g673bj1ck5vavbjaij5jyniygdlw51mdds005wd2br9wf"))))
> +    (build-system emacs-build-system)
> +    (propagated-inputs
> +     `(("emacs-deferred" ,emacs-deferred)
> +       ("emacs-request" ,emacs-request)
> +       ("emacs-dash" ,emacs-dash)
> +       ("emacs-s" ,emacs-s)))
> +    (home-page "https://org-trello.github.io";)
> +    (synopsis "Emacs minor mode for interacting with Trello")
> +    (description "This package provides an emacs minor mode to extend

Please capitalize “Emacs”.

> address@hidden with Trello abilities.  Trello is an online project
> +organizer.")
> +    (license license:gpl3+)))
> +
>  (define-public emacs-zenburn-theme
>    (package
>      (name "emacs-zenburn-theme")

Other than that it looks good!

Thanks!

~~ Ricardo




reply via email to

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