gnu: irssi: Update to 1.2.2.

* gnu/packages/irc.scm (irssi)[version]: Update to 1.2.2.
[arguments]: Set HOME environment variable to current working directory before
'check' phase.
This commit is contained in:
Oleg Pykhalov 2020-01-08 07:21:08 +03:00
parent 8daa832661
commit 7eea3afd02
No known key found for this signature in database
GPG key ID: 167F8EA5001AFA9C

View file

@ -6,6 +6,7 @@
;;; Copyright © 2016 ng0 <ng0@n0.is>
;;; Copyright © 2017 Marius Bakke <mbakke@fastmail.com>
;;; Copyright © 2017, 2018, 2019 Tobias Geerinckx-Rice <me@tobias.gr>
;;; Copyright © 2020 Oleg Pykhalov <go.wigust@gmail.com>
;;;
;;; This file is part of GNU Guix.
;;;
@ -127,7 +128,7 @@ (define-public quassel
(define-public irssi
(package
(name "irssi")
(version "1.1.3")
(version "1.2.2")
(source (origin
(method url-fetch)
(uri (string-append "https://github.com/irssi/irssi/"
@ -135,7 +136,7 @@ (define-public irssi
version ".tar.xz"))
(sha256
(base32
"0jq8zjdhdjxkjbfl4g4nfr1ninyfxffa27lm8vcyrihhhkrn65yf"))))
"0y3mhnyr7x8ir8dlj83vbnchpfld28vdfni9yhpvls45j460c9v7"))))
(build-system gnu-build-system)
(arguments
`(#:phases
@ -148,7 +149,10 @@ (define-public irssi
(string-append "--prefix=" out)
(string-append "--with-proxy")
(string-append "--with-socks")
(string-append "--with-bot"))))))))
(string-append "--with-bot")))))
(add-before 'check 'set-home
(lambda _
(setenv "HOME" (getcwd)))))))
(inputs
`(("glib" ,glib)
("ncurses" ,ncurses)