diff options
Diffstat (limited to 'gnu/packages/irc.scm')
-rw-r--r-- | gnu/packages/irc.scm | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/gnu/packages/irc.scm b/gnu/packages/irc.scm index b00fd6cc19..e59b34417b 100644 --- a/gnu/packages/irc.scm +++ b/gnu/packages/irc.scm @@ -5,7 +5,7 @@ ;;; Copyright © 2015, 2016, 2017, 2018 Efraim Flashner <efraim@flashner.co.il> ;;; Copyright © 2016 ng0 <ng0@infotropique.org> ;;; Copyright © 2017 Marius Bakke <mbakke@fastmail.com> -;;; Copyright © 2017 Tobias Geerinckx-Rice <me@tobias.gr> +;;; Copyright © 2017, 2018 Tobias Geerinckx-Rice <me@tobias.gr> ;;; ;;; This file is part of GNU Guix. ;;; @@ -272,23 +272,23 @@ using a mouse. It is customizable and extensible with plugins and scripts.") (define-public ii (package (name "ii") - (version "1.7") + (version "1.8") (source (origin (method url-fetch) (uri (string-append "http://dl.suckless.org/tools/" name "-" version ".tar.gz")) (sha256 (base32 - "176cqwnn6h7w4kbfd66hzqa243l26pqp2b06bii0nmnm0rkaqwis")))) + "1lk8vjl7i8dcjh4jkg8h8bkapcbs465sy8g9c0chfqsywbmf3ndr")))) (build-system gnu-build-system) (arguments - `(#:tests? #f ; no tests + `(#: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/") + (delete 'configure)))) ; no configure + (home-page "https://tools.suckless.org/ii/") (synopsis "FIFO and file system based IRC client") (description "ii (Irc it) is a minimalist FIFO and file system based IRC client.") @@ -313,7 +313,7 @@ using a mouse. It is customizable and extensible with plugins and scripts.") #:phases (modify-phases %standard-phases (delete 'configure)))) ; no configure - (home-page "http://tools.suckless.org/sic/") + (home-page "https://tools.suckless.org/sic/") (synopsis "Simple IRC client") (description "sic is a simple IRC client, even more minimalistic than ii.") |