* [bug#51752] [PATCH v2] gnu: Add mtm.
@ 2021-11-10 13:41 phodina via Guix-patches via
2021-11-15 10:27 ` bug#51752: " Nicolas Goaziou
0 siblings, 1 reply; 2+ messages in thread
From: phodina via Guix-patches via @ 2021-11-10 13:41 UTC (permalink / raw)
To: Nicolas Goaziou; +Cc: 45130, 51752
Hi Nicolas,
here's updated patch. The mtm package is placed in terminals.scm with the suggestions you mentioned above.
---
Kind regards
Petr
* gnu/packages/terminals.scm (mtm): New variable.
diff --git a/gnu/packages/terminals.scm b/gnu/packages/terminals.scm
index 8d751f6cce..b2c214275e 100644
--- a/gnu/packages/terminals.scm
+++ b/gnu/packages/terminals.scm
@@ -23,11 +23,13 @@
;;; Copyright © 2020, 2021 Marius Bakke <marius@gnu.org>
;;; Copyright © 2020, 2021 Nicolas Goaziou <mail@nicolasgoaziou.fr>
;;; Copyright © 2020 Leo Famulari <leo@famulari.name>
+;;; Copyright @ 2020 luhux <luhux@outlook.com>
;;; Copyright © 2021 Ekaitz Zarraga <ekaitz@elenq.tech>
;;; Copyright © 2021 Raphaël Mélotte <raphael.melotte@mind.be>
;;; Copyright © 2021 ikasero <ahmed@ikasero.com>
;;; Copyright © 2021 Brice Waegeneire <brice@waegenei.re>
;;; Copyright © 2021 Solene Rapenne <solene@perso.pw>
+;;; Copyright © 2021 Petr Hodina <phodina@protonmail.com>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -424,6 +426,64 @@ (define-public mlterm
Vietnamese, and bi-directional scripts like Arabic and Hebrew.")
(license license:bsd-3)))
+(define-public mtm
+ (package
+ (name "mtm")
+ (version "1.2.1")
+ (source
+ (origin
+ (uri (git-reference
+ (url "https://github.com/deadpixi/mtm")
+ (commit version)))
+ (method git-fetch)
+ (sha256
+ (base32 "0gibrvah059z37jvn1qs4b6kvd4ivk2mfihmcpgx1vz6yg70zghv"))
+ (file-name (git-file-name name version))))
+ (build-system gnu-build-system)
+ (inputs
+ `(("ncurses" ,ncurses)))
+ (arguments
+ `(#:tests? #f ; no tests
+ #:make-flags
+ (list (string-append "CC=" ,(cc-for-target))
+ (string-append "DESTDIR=" (assoc-ref %outputs "out")))
+ #:phases
+ (modify-phases %standard-phases
+ (add-before 'build 'fix-headers
+ (lambda _
+ (substitute* "config.def.h"
+ (("ncursesw/curses.h")
+ "curses.h"))))
+ (replace 'install
+ (lambda* (#:key inputs outputs #:allow-other-keys)
+ (let* ((out (assoc-ref outputs "out")))
+ ;; install binary
+ (mkdir-p (string-append out "bin/"))
+ (install-file "mtm" (string-append out "/bin"))
+ ;; install manpage
+ (mkdir-p (string-append out "share/man/man1"))
+ (install-file "mtm.1" (string-append out "/share/man/man1"))
+ ;; install terminfo
+ (mkdir-p (string-append out "share/terminfo"))
+ (invoke (string-append (assoc-ref inputs "ncurses") "/bin/tic")
+ "-x" "-s" "-o"
+ (string-append
+ out "/share/terminfo")
+ "mtm.ti"))))
+ (delete 'configure)))) ; no configure script
+ ;; FIXME: This should only be located in 'ncurses'. Nonetheless it is
+ ;; provided for usability reasons. See <https://bugs.gnu.org/22138>.
+ (native-search-paths
+ (list (search-path-specification
+ (variable "TERMINFO_DIRS")
+ (files '("share/terminfo")))))
+ (home-page "https://github.com/deadpixi/mtm")
+ (synopsis "Micro Terminal Multiplexer")
+ (description
+ "This package provides multiplexer for the terminal focused on simplicity,
+compatibility, size and stability.")
+ (license license:gpl3+)))
+
(define-public picocom
(package
(name "picocom")
--
2.33.1
^ permalink raw reply related [flat|nested] 2+ messages in thread
* bug#51752: [PATCH v2] gnu: Add mtm.
2021-11-10 13:41 [bug#51752] [PATCH v2] gnu: Add mtm phodina via Guix-patches via
@ 2021-11-15 10:27 ` Nicolas Goaziou
0 siblings, 0 replies; 2+ messages in thread
From: Nicolas Goaziou @ 2021-11-15 10:27 UTC (permalink / raw)
To: phodina via Guix-patches via; +Cc: 45130-done, phodina, 51752-done
Hello,
phodina via Guix-patches via <guix-patches@gnu.org> writes:
> here's updated patch. The mtm package is placed in terminals.scm with
> the suggestions you mentioned above.
Thank you. I applied it with the minor modifications below.
> + (build-system gnu-build-system)
> + (inputs
> + `(("ncurses" ,ncurses)))
I moved inputs field after arguments.
> + (license license:gpl3+)))
I added bsd-3 for vtparser.c
Regards,
--
Nicolas Goaziou
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2021-11-15 10:29 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-11-10 13:41 [bug#51752] [PATCH v2] gnu: Add mtm phodina via Guix-patches via
2021-11-15 10:27 ` bug#51752: " Nicolas Goaziou
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/guix.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.