guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

07/07: gnu: Add ii.


From: Alex Kost
Subject: 07/07: gnu: Add ii.
Date: Sun, 7 Aug 2016 13:55:31 +0000 (UTC)

alezost pushed a commit to branch master
in repository guix.

commit 99840fbbee260354d134031ae69e6e94b0f39d48
Author: ng0 <address@hidden>
Date:   Sun Aug 7 11:35:34 2016 +0000

    gnu: Add ii.
    
    * gnu/packages/irc.scm (ii): New variable.
    
    Signed-off-by: Alex Kost <address@hidden>
---
 gnu/packages/irc.scm |   25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)

diff --git a/gnu/packages/irc.scm b/gnu/packages/irc.scm
index 11250a3..d75746b 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)))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]