* [bug#45440] [PATCH] gnu: Add boxes.
@ 2020-12-25 22:57 aecepoglu
2021-01-04 10:54 ` bug#45440: " Ludovic Courtès
0 siblings, 1 reply; 2+ messages in thread
From: aecepoglu @ 2020-12-25 22:57 UTC (permalink / raw)
To: 45440
* gnu/packages/shellutils.scm (boxes): New variable.
---
gnu/packages/shellutils.scm | 42 +++++++++++++++++++++++++++++++++++++
1 file changed, 42 insertions(+)
diff --git a/gnu/packages/shellutils.scm b/gnu/packages/shellutils.scm
index 181a640475..9d94129c40 100644
--- a/gnu/packages/shellutils.scm
+++ b/gnu/packages/shellutils.scm
@@ -34,6 +34,8 @@
#:use-module (guix build-system python)
#:use-module (gnu packages autotools)
#:use-module (gnu packages base)
+ #:use-module (gnu packages bison)
+ #:use-module (gnu packages flex)
#:use-module (gnu packages golang)
#:use-module (gnu packages ncurses)
#:use-module (gnu packages pkg-config)
@@ -43,6 +45,46 @@
#:use-module (gnu packages shells)
#:use-module (gnu packages tmux))
+(define-public boxes
+ (package
+ (name "boxes")
+ (version "1.3")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/ascii-boxes/boxes")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ "0b12rsynrmkldlwcb62drk33kk0aqwbj10mq5y5x3hjf626gjwsi")))
+ (build-system gnu-build-system)
+ (arguments
+ `(#:test-target "test"
+ #:make-flags (list (string-append "GLOBALCONF="
+ (assoc-ref %outputs "out")
+ "/etc/boxes-config"))
+ #:phases (modify-phases
+ %standard-phases
+ (delete 'configure)
+ (replace 'install
+ (lambda* (#:key outputs #:allow-other-keys)
+ (let ((dest (assoc-ref outputs "out")))
+ (for-each
+ (lambda (x)
+ (install-file
+ (car x)
+ (string-append dest "/" (cdr x))))
+ '(("src/boxes" . "bin")
+ ("doc/boxes.1" . "share/man/man1")
+ ("boxes-config" . "etc/")))
+ #t))))))
+ (native-inputs `(("flex" ,flex) ("bison" ,bison)))
+ (synopsis "Command line ASCII boxes")
+ (description "Command line filter program that draws ASCII art boxes
+arnd your input text")
+ (home-page "https://boxes.thomasjensen.com/build.html")
+ (license license:gpl2)))
+
(define-public zsh-autosuggestions
(package
(name "zsh-autosuggestions")
--
2.29.2
^ permalink raw reply related [flat|nested] 2+ messages in thread
* bug#45440: [PATCH] gnu: Add boxes.
2020-12-25 22:57 [bug#45440] [PATCH] gnu: Add boxes aecepoglu
@ 2021-01-04 10:54 ` Ludovic Courtès
0 siblings, 0 replies; 2+ messages in thread
From: Ludovic Courtès @ 2021-01-04 10:54 UTC (permalink / raw)
To: aecepoglu; +Cc: 45440-done
Hi,
aecepoglu <aecepoglu@fastmail.fm> skribis:
> * gnu/packages/shellutils.scm (boxes): New variable.
Pushed as 729f582a830dc03a509d1e3ad28bac1d43ba6e2e. I tweaked the
indentation and the description, and added a copyright line for you.
Let me know if I got something wrong!
Thanks,
Ludo’.
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2021-01-04 10:55 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-12-25 22:57 [bug#45440] [PATCH] gnu: Add boxes aecepoglu
2021-01-04 10:54 ` bug#45440: " Ludovic Courtès
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).