diff options
author | ng0 <ng0@we.make.ritual.n0.is> | 2016-08-07 11:35:34 +0000 |
---|---|---|
committer | Alex Kost <alezost@gmail.com> | 2016-08-07 16:54:30 +0300 |
commit | 99840fbbee260354d134031ae69e6e94b0f39d48 (patch) | |
tree | 356e6e897e0d4ea35ba9e112c18a30f496d9d31c /gnu/packages/irc.scm | |
parent | 8a48353a4f4ffd41772adb5aa83d7094c7751aed (diff) | |
download | guix-99840fbbee260354d134031ae69e6e94b0f39d48.tar guix-99840fbbee260354d134031ae69e6e94b0f39d48.tar.gz |
gnu: Add ii.
* gnu/packages/irc.scm (ii): New variable.
Signed-off-by: Alex Kost <alezost@gmail.com>
Diffstat (limited to 'gnu/packages/irc.scm')
-rw-r--r-- | gnu/packages/irc.scm | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/gnu/packages/irc.scm b/gnu/packages/irc.scm index 11250a370f..d75746b4a5 100644 --- a/gnu/packages/irc.scm +++ b/gnu/packages/irc.scm @@ -241,3 +241,28 @@ and extensible with plugins and scripts.") (description "ircII is a terminal based IRC and ICB client for UNIX systems.") (license license:bsd-3))) + +(define-public ii + (package + (name "ii") + (version "1.7") + (source (origin + (method url-fetch) + (uri (string-append "http://dl.suckless.org/tools/" + name "-" version ".tar.gz")) + (sha256 + (base32 + "176cqwnn6h7w4kbfd66hzqa243l26pqp2b06bii0nmnm0rkaqwis")))) + (build-system gnu-build-system) + (arguments + `(#:tests? #f ; no tests + #:make-flags (list (string-append "PREFIX=" %output) + "CC=gcc") + #:phases + (modify-phases %standard-phases + (delete 'configure)))) ; no configure + (home-page "http://tools.suckless.org/ii/") + (synopsis "FIFO and filesystem-based IRC client") + (description + "ii (Irc it) is a minimalist FIFO and filesystem based IRC client.") + (license license:expat))) |