unofficial mirror of guix-devel@gnu.org 
 help / color / mirror / code / Atom feed
* [PATCH] gnu: Add emacs-multiple-cursors.
@ 2016-06-17 20:24 Ricardo Wurmus
  2016-06-18 10:55 ` Alex Kost
  0 siblings, 1 reply; 3+ messages in thread
From: Ricardo Wurmus @ 2016-06-17 20:24 UTC (permalink / raw)
  To: guix-devel

* gnu/packages/emacs.scm (emacs-multiple-cursors): New variable.
---
 gnu/packages/emacs.scm | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)

diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm
index bbb4baa..62e14cb 100644
--- a/gnu/packages/emacs.scm
+++ b/gnu/packages/emacs.scm
@@ -1356,6 +1356,27 @@ front-ends.  Company comes with many back-ends, e.g. @code{company-elisp}.
 These are distributed in separate files and can be used individually.")
     (license license:gpl3+)))
 
+(define-public emacs-multiple-cursors
+  (package
+    (name "emacs-multiple-cursors")
+    (version "1.4.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "https://github.com/magnars/multiple-cursors.el/archive/"
+                           version ".tar.gz"))
+       (file-name (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32
+         "0hihihlvcvzayg5fnqzcg45fhvlmq6xlq58syy00rjwbry9w389k"))))
+    (build-system emacs-build-system)
+    (home-page "https://github.com/magnars/multiple-cursors.el")
+    (synopsis "Multiple cursors for Emacs.")
+    (description
+     "This package adds support to Emacs for editing text with multiple
+simultaneous cursors.")
+    (license license:gpl3+)))
+
 (define-public typo
   (package
     (name "emacs-typo")
-- 
2.8.3

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] gnu: Add emacs-multiple-cursors.
  2016-06-17 20:24 [PATCH] gnu: Add emacs-multiple-cursors Ricardo Wurmus
@ 2016-06-18 10:55 ` Alex Kost
  2016-06-18 16:16   ` Ricardo Wurmus
  0 siblings, 1 reply; 3+ messages in thread
From: Alex Kost @ 2016-06-18 10:55 UTC (permalink / raw)
  To: Ricardo Wurmus; +Cc: guix-devel

Ricardo Wurmus (2016-06-17 23:24 +0300) wrote:

> * gnu/packages/emacs.scm (emacs-multiple-cursors): New variable.
> ---
>  gnu/packages/emacs.scm | 21 +++++++++++++++++++++
>  1 file changed, 21 insertions(+)
>
>
> diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm
> index bbb4baa..62e14cb 100644
> --- a/gnu/packages/emacs.scm
> +++ b/gnu/packages/emacs.scm
> @@ -1356,6 +1356,27 @@ front-ends.  Company comes with many back-ends, e.g. @code{company-elisp}.
>  These are distributed in separate files and can be used individually.")
>      (license license:gpl3+)))
>  
> +(define-public emacs-multiple-cursors
> +  (package
> +    (name "emacs-multiple-cursors")
> +    (version "1.4.0")
> +    (source
> +     (origin
> +       (method url-fetch)
> +       (uri (string-append "https://github.com/magnars/multiple-cursors.el/archive/"

I would make this line a bit shorter.

> +                           version ".tar.gz"))
> +       (file-name (string-append name "-" version ".tar.gz"))
> +       (sha256
> +        (base32
> +         "0hihihlvcvzayg5fnqzcg45fhvlmq6xlq58syy00rjwbry9w389k"))))
> +    (build-system emacs-build-system)
> +    (home-page "https://github.com/magnars/multiple-cursors.el")
> +    (synopsis "Multiple cursors for Emacs.")

Oops, don't forget about "guix lint" -------^

Otherwise, LGTM.

> +    (description
> +     "This package adds support to Emacs for editing text with multiple
> +simultaneous cursors.")
> +    (license license:gpl3+)))
> +
>  (define-public typo
>    (package
>      (name "emacs-typo")

-- 
Alex

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] gnu: Add emacs-multiple-cursors.
  2016-06-18 10:55 ` Alex Kost
@ 2016-06-18 16:16   ` Ricardo Wurmus
  0 siblings, 0 replies; 3+ messages in thread
From: Ricardo Wurmus @ 2016-06-18 16:16 UTC (permalink / raw)
  To: Alex Kost; +Cc: guix-devel


Alex Kost <alezost@gmail.com> writes:

> Ricardo Wurmus (2016-06-17 23:24 +0300) wrote:
>
>> * gnu/packages/emacs.scm (emacs-multiple-cursors): New variable.
>> ---
>>  gnu/packages/emacs.scm | 21 +++++++++++++++++++++
>>  1 file changed, 21 insertions(+)
>>
>>
>> diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm
>> index bbb4baa..62e14cb 100644
>> --- a/gnu/packages/emacs.scm
>> +++ b/gnu/packages/emacs.scm
>> @@ -1356,6 +1356,27 @@ front-ends.  Company comes with many back-ends, e.g. @code{company-elisp}.
>>  These are distributed in separate files and can be used individually.")
>>      (license license:gpl3+)))
>>  
>> +(define-public emacs-multiple-cursors
>> +  (package
>> +    (name "emacs-multiple-cursors")
>> +    (version "1.4.0")
>> +    (source
>> +     (origin
>> +       (method url-fetch)
>> +       (uri (string-append "https://github.com/magnars/multiple-cursors.el/archive/"
>
> I would make this line a bit shorter.

Okay.

>> +                           version ".tar.gz"))
>> +       (file-name (string-append name "-" version ".tar.gz"))
>> +       (sha256
>> +        (base32
>> +         "0hihihlvcvzayg5fnqzcg45fhvlmq6xlq58syy00rjwbry9w389k"))))
>> +    (build-system emacs-build-system)
>> +    (home-page "https://github.com/magnars/multiple-cursors.el")
>> +    (synopsis "Multiple cursors for Emacs.")
>
> Oops, don't forget about "guix lint" -------^

Thanks for the reminder.

> Otherwise, LGTM.

Thank you for the review.  I pushed it to master.

~~ Ricardo

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2016-06-18 16:16 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-06-17 20:24 [PATCH] gnu: Add emacs-multiple-cursors Ricardo Wurmus
2016-06-18 10:55 ` Alex Kost
2016-06-18 16:16   ` Ricardo Wurmus

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).