unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
From: Nikolay Korotkiy via Guix-patches via <guix-patches@gnu.org>
To: 56174@debbugs.gnu.org
Cc: Nikolay Korotkiy <sikmir@disroot.org>
Subject: [bug#56174] [PATCH] gnu: Add mle.
Date: Thu, 23 Jun 2022 22:30:11 +0300	[thread overview]
Message-ID: <68d2c3b91f55a2058e01fb6a8217cf2e8a0c43f3.1656012611.git.sikmir@disroot.org> (raw)

* gnu/packages/text-editors.scm (mle): New variable.
---
 gnu/packages/text-editors.scm | 52 +++++++++++++++++++++++++++++++++++
 1 file changed, 52 insertions(+)

diff --git a/gnu/packages/text-editors.scm b/gnu/packages/text-editors.scm
index 1c936be6a8..03df69667a 100644
--- a/gnu/packages/text-editors.scm
+++ b/gnu/packages/text-editors.scm
@@ -56,6 +56,7 @@ (define-module (gnu packages text-editors)
   #:use-module (gnu packages code)
   #:use-module (gnu packages cpp)
   #:use-module (gnu packages crates-io)
+  #:use-module (gnu packages datastructures)
   #:use-module (gnu packages documentation)
   #:use-module (gnu packages fontutils)
   #:use-module (gnu packages freedesktop)
@@ -1215,3 +1216,54 @@ (define-public tree-sitter
 This package includes the @code{libtree-sitter} runtime library.
 ")
     (license license:expat)))
+
+(define-public mle
+  (package
+    (name "mle")
+    (version "1.5.0")
+    (source (origin
+              (method git-fetch)
+              (uri (git-reference
+                    (url "https://github.com/adsr/mle")
+                    (commit (string-append "v" version))))
+              (file-name (git-file-name name version))
+              (sha256
+               (base32
+                "1nhd00lsx9v12zdmps92magz76c2d8zzln3lxvzl4ng73gbvq3n0"))))
+    (build-system gnu-build-system)
+    (inputs (list lua pcre uthash))
+    (arguments
+     `(#:test-target "test"
+       #:phases
+       (modify-phases %standard-phases
+         (add-after 'unpack 'fix-lua
+           (lambda* (#:key inputs #:allow-other-keys)
+             (substitute* "mle.h"
+               (("<lua5.4/") "<"))
+             (substitute* "Makefile"
+               (("-llua5.4") "-llua")
+               (("/bin/sh") (which "sh")))))
+         (add-after 'unpack 'patch-test-shebangs
+           (lambda _
+             (substitute* (find-files "tests/func" "\\.sh$")
+               (("/usr/bin/env bash") (which "bash")))))
+         (delete 'configure) ;no configure script
+         (add-after 'install 'install-man-pages
+           (lambda* (#:key outputs #:allow-other-keys)
+             (let* ((out (assoc-ref outputs "out")) (man (string-append out
+                                                          "/share/man/man1")))
+               (install-file "mle.1"
+                             (string-append man))))))
+       #:make-flags
+       (list (string-append "CC="
+                            ,(cc-for-target))
+             (string-append "prefix=" %output))))
+    (home-page "https://github.com/adsr/mle")
+    (synopsis "Small, flexible, terminal-based text editor")
+    (description
+     "mle is a small, flexible, terminal-based text editor written in C.
+Notable features include: full Unicode support, syntax highlighting,
+scriptable rc file, macros, search and replace (PCRE), window
+splitting, multiple cursors, and integration with various shell
+commands.")
+    (license license:asl2.0)))
-- 
2.36.1





             reply	other threads:[~2022-06-23 19:31 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-06-23 19:30 Nikolay Korotkiy via Guix-patches via [this message]
2022-06-25 21:45 ` bug#56174: [PATCH] gnu: Add mle Ludovic Courtès

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://guix.gnu.org/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=68d2c3b91f55a2058e01fb6a8217cf2e8a0c43f3.1656012611.git.sikmir@disroot.org \
    --to=guix-patches@gnu.org \
    --cc=56174@debbugs.gnu.org \
    --cc=sikmir@disroot.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).