guix-commits
[Top][All Lists]
Advanced

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

07/18: gnu: Add elixir-makeup.


From: guix-commits
Subject: 07/18: gnu: Add elixir-makeup.
Date: Sun, 17 Dec 2023 18:20:39 -0500 (EST)

lilyp pushed a commit to branch master
in repository guix.

commit be31d3f32f1c3974cd9a011372c95664f7c443f2
Author: Pierre-Henry Fröhring <phfrohring@deeplinks.com>
AuthorDate: Sun Dec 10 14:03:58 2023 +0100

    gnu: Add elixir-makeup.
    
    * gnu/packages/elixir-xyz.scm (elixir-makeup): New variable.
    
    Change-Id: I21fe9ffddb4c95a2c67b74340b1105c2a54d3c82
    Signed-off-by: Liliana Marie Prikler <liliana.prikler@gmail.com>
---
 gnu/packages/elixir-xyz.scm | 20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)

diff --git a/gnu/packages/elixir-xyz.scm b/gnu/packages/elixir-xyz.scm
index a57d2aae8d..ba682e7f07 100644
--- a/gnu/packages/elixir-xyz.scm
+++ b/gnu/packages/elixir-xyz.scm
@@ -50,6 +50,26 @@ for higher-level combinators through composition.")
     (home-page "https://hexdocs.pm/nimble_parsec/";)
     (license license:asl2.0)))
 
+(define-public elixir-makeup
+  (package
+    (name "elixir-makeup")
+    (version "1.1.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (hexpm-uri name version))
+       (sha256
+        (base32 "19jpprryixi452jwhws3bbks6ki3wni9kgzah3srg22a3x8fsi8a"))))
+    (build-system mix-build-system)
+    (propagated-inputs (list elixir-nimble-parsec))
+    (arguments (list #:tests? #f)) ; no tests
+    (synopsis "Syntax highlighter for source code")
+    (description
+     "Makeup is a generic syntax highlighter in the style of Pygments suitable 
for use in code hosting,
+forums, wikis or other applications that need to prettify source code.")
+    (home-page "https://hexdocs.pm/makeup/";)
+    (license license:bsd-2)))
+
 ;;;
 ;;; Avoid adding new packages to the end of this file. To reduce the chances
 ;;; of a merge conflict, place them above by existing packages with similar



reply via email to

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