mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 05:48:07 -05:00
gnu: Add lchat.
* gnu/packages/suckless.scm (lchat): New variable. Signed-off-by: Leo Famulari <leo@famulari.name>
This commit is contained in:
parent
37d5fc7b5a
commit
0318305cdb
1 changed files with 51 additions and 1 deletions
|
@ -43,7 +43,9 @@ (define-module (gnu packages suckless)
|
|||
#:use-module (gnu packages compression)
|
||||
#:use-module (gnu packages cups)
|
||||
#:use-module (gnu packages ncurses)
|
||||
#:use-module (gnu packages gawk))
|
||||
#:use-module (gnu packages gawk)
|
||||
#:use-module (gnu packages base)
|
||||
#:use-module (gnu packages libbsd))
|
||||
|
||||
(define-public dwm
|
||||
(package
|
||||
|
@ -623,3 +625,51 @@ (define-public libutf
|
|||
as -1, to be used instead of U+FFFD.
|
||||
@end itemize\n")
|
||||
(license license:expat))))
|
||||
|
||||
;; No release tarballs so far.
|
||||
(define-public lchat
|
||||
(let ((revision "1")
|
||||
(commit "bbde23732f8c7769b982f0c1bda9b99fbf93f932"))
|
||||
(package
|
||||
(name "lchat")
|
||||
(version (string-append "0.0.0-" revision "." (string-take commit 7)))
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/younix/lchat")
|
||||
(commit commit)))
|
||||
(file-name (string-append name "-" version "-checkout"))
|
||||
(sha256
|
||||
(base32
|
||||
"00q3rc0aa5416jvjvrj71x1wnr0331kxhvjjs7pyxgnq4xf36k63"))))
|
||||
(build-system gnu-build-system)
|
||||
(arguments
|
||||
`(#:tests? #f ; No tests
|
||||
#:make-flags (list "CC=gcc"
|
||||
(string-append "PREFIX=" %output))
|
||||
#:phases
|
||||
(modify-phases %standard-phases
|
||||
(delete 'configure) ; No configure script
|
||||
(add-before 'build 'libbsd
|
||||
(lambda _
|
||||
(substitute* "Makefile"
|
||||
(("-lutf") "-lutf -lbsd"))))
|
||||
(replace 'install
|
||||
(lambda* (#:key outputs #:allow-other-keys)
|
||||
(let* ((out (assoc-ref outputs "out"))
|
||||
(bin (string-append out "/bin")))
|
||||
(install-file "lchat" bin)
|
||||
#t))))))
|
||||
(inputs
|
||||
`(("grep" ,grep)
|
||||
("ncurses" ,ncurses)
|
||||
("libutf" ,libutf)
|
||||
("libbsd" ,libbsd)))
|
||||
(home-page "https://github.com/younix/lchat")
|
||||
(synopsis "Line chat is a frontend for the irc client ii from suckless")
|
||||
(description
|
||||
"Lchat (line chat) is the little and small brother of cii.
|
||||
It is a front end for ii-like chat programs. It uses tail(1) -f to get the
|
||||
chat output in background.")
|
||||
(license license:isc))))
|
||||
|
|
Loading…
Reference in a new issue