gnu: irssi: Use 'modify-phases'.

* gnu/packages/irc.scm (irssi)[arguments]: Use 'modify-phases'.
master
Efraim Flashner 2016-02-28 20:48:57 +02:00
parent 27930f853d
commit a61bd6a5e3
1 changed files with 10 additions and 11 deletions

View File

@ -88,17 +88,16 @@ irssi, but graphical.")
(build-system gnu-build-system) (build-system gnu-build-system)
(arguments (arguments
`(#:phases `(#:phases
(alist-replace (modify-phases %standard-phases
'configure (replace 'configure
(lambda* (#:key inputs outputs #:allow-other-keys) (lambda* (#:key inputs outputs #:allow-other-keys)
(let ((out (assoc-ref outputs "out")) (let ((out (assoc-ref outputs "out"))
(ncurses (assoc-ref inputs "ncurses"))) (ncurses (assoc-ref inputs "ncurses")))
(setenv "CONFIG_SHELL" (which "bash")) (setenv "CONFIG_SHELL" (which "bash"))
(zero? (zero?
(system* "./configure" (system* "./configure"
(string-append "--prefix=" out) (string-append "--prefix=" out)
(string-append "--with-ncurses=" ncurses))))) (string-append "--with-ncurses=" ncurses)))))))))
%standard-phases)))
(inputs (inputs
`(("glib" ,glib) `(("glib" ,glib)
("ncurses" ,ncurses) ("ncurses" ,ncurses)