unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#58187] [PATCH] gnu: Add emacs-new-purescript-mode.
@ 2022-09-30  5:21 jgart via Guix-patches via
  2022-09-30  5:24 ` [bug#58187] [PATCH v2] " jgart via Guix-patches via
  0 siblings, 1 reply; 3+ messages in thread
From: jgart via Guix-patches via @ 2022-09-30  5:21 UTC (permalink / raw)
  To: 58187; +Cc: jgart

* gnu/packages/emacs-xyz.scm (emacs-new-purescript-mode): New variable.
---
 gnu/packages/emacs-xyz.scm | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index fef37627f3..5def53ef09 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -8532,6 +8532,30 @@ (define-public emacs-purescript-mode
       (description "This package provides an Emacs major mode for writing Purescript.")
       (license license:gpl3+))))
 
+(define-public emacs-new-purescript-mode
+  (let ((commit "9f7bb73e26340fcd2ea1946dbad165f0406eb3e1")
+        (revision "0"))
+    (package
+      (name "emacs-new-purescript-mode")
+      (version (git-version "0.0.1" revision commit))
+      (source
+       (origin
+         (method git-fetch)
+         (uri
+          (git-reference
+           (url "https://github.com/justinwoo/new-purescript-mode")
+           (commit commit)))
+         (file-name (git-file-name name version))
+         (sha256
+          (base32 "0b3499df0gfz8yrdxz9dpgwal21h50sciigwz25ri1hwv1c1i7k0"))))
+      (build-system emacs-build-system)
+      (home-page "https://github.com/justinwoo/new-purescript-mode/")
+      (synopsis "Simple purescript mode for cheap syntax highlighting")
+      (description
+"@code{emacs-new-purescript-mode} is a simple PureScript Emacs mode that
+just provides syntax highlighting.")
+      (license license:expat))))
+
 (define-public emacs-god-mode
   (package
     (name "emacs-god-mode")
-- 
2.37.3





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

* [bug#58187] [PATCH v2] gnu: Add emacs-new-purescript-mode.
  2022-09-30  5:21 [bug#58187] [PATCH] gnu: Add emacs-new-purescript-mode jgart via Guix-patches via
@ 2022-09-30  5:24 ` jgart via Guix-patches via
  2022-09-30  7:11   ` bug#58187: " Nicolas Goaziou
  0 siblings, 1 reply; 3+ messages in thread
From: jgart via Guix-patches via @ 2022-09-30  5:24 UTC (permalink / raw)
  To: 58187; +Cc: jgart

* gnu/packages/emacs-xyz.scm (emacs-new-purescript-mode): New variable.

Fixed capitalization in v2.
---
 gnu/packages/emacs-xyz.scm | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)

diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index fef37627f3..541d10c636 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -8532,6 +8532,30 @@ (define-public emacs-purescript-mode
       (description "This package provides an Emacs major mode for writing Purescript.")
       (license license:gpl3+))))
 
+(define-public emacs-new-purescript-mode
+  (let ((commit "9f7bb73e26340fcd2ea1946dbad165f0406eb3e1")
+        (revision "0"))
+    (package
+      (name "emacs-new-purescript-mode")
+      (version (git-version "0.0.1" revision commit))
+      (source
+       (origin
+         (method git-fetch)
+         (uri
+          (git-reference
+           (url "https://github.com/justinwoo/new-purescript-mode")
+           (commit commit)))
+         (file-name (git-file-name name version))
+         (sha256
+          (base32 "0b3499df0gfz8yrdxz9dpgwal21h50sciigwz25ri1hwv1c1i7k0"))))
+      (build-system emacs-build-system)
+      (home-page "https://github.com/justinwoo/new-purescript-mode/")
+      (synopsis "Simple PureScript mode for cheap syntax highlighting")
+      (description
+"@code{emacs-new-purescript-mode} is a simple PureScript Emacs mode that
+just provides syntax highlighting.")
+      (license license:expat))))
+
 (define-public emacs-god-mode
   (package
     (name "emacs-god-mode")
-- 
2.37.3





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

* bug#58187: [PATCH v2] gnu: Add emacs-new-purescript-mode.
  2022-09-30  5:24 ` [bug#58187] [PATCH v2] " jgart via Guix-patches via
@ 2022-09-30  7:11   ` Nicolas Goaziou
  0 siblings, 0 replies; 3+ messages in thread
From: Nicolas Goaziou @ 2022-09-30  7:11 UTC (permalink / raw)
  To: jgart via Guix-patches via; +Cc: jgart, 58187-done

Hello,

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

> * gnu/packages/emacs-xyz.scm (emacs-new-purescript-mode): New
> variable.

Thank you. Applied, with the change below.

> +      (description
> +"@code{emacs-new-purescript-mode} is a simple PureScript Emacs mode that
> +just provides syntax highlighting.")

-> New PureScript mode is a …

emacs-new-purescript-mode is the name of the Guix variable bound to the package.

Regards,
-- 
Nicolas Goaziou




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

end of thread, other threads:[~2022-09-30  7:13 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-09-30  5:21 [bug#58187] [PATCH] gnu: Add emacs-new-purescript-mode jgart via Guix-patches via
2022-09-30  5:24 ` [bug#58187] [PATCH v2] " jgart via Guix-patches via
2022-09-30  7:11   ` bug#58187: " Nicolas Goaziou

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).