diff options
author | Leo Famulari <leo@famulari.name> | 2016-02-21 03:30:30 -0500 |
---|---|---|
committer | Leo Famulari <leo@famulari.name> | 2016-02-22 20:16:25 -0500 |
commit | 9913c78a09f27bd733a4101a9638ec76d5346879 (patch) | |
tree | 8575efec6ff97f8a1456be7a588153ebfaac9afc /gnu/packages/mpd.scm | |
parent | 944d2b17b50b6e1890817d4724ed101bc2c4b0ef (diff) | |
download | patches-9913c78a09f27bd733a4101a9638ec76d5346879.tar patches-9913c78a09f27bd733a4101a9638ec76d5346879.tar.gz |
gnu: ncmpcpp: Use 'modify-phases'.
* gnu/packages/mpd.scm (ncmpcpp)[arguments]: Use 'modify-phases'.
Diffstat (limited to 'gnu/packages/mpd.scm')
-rw-r--r-- | gnu/packages/mpd.scm | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/gnu/packages/mpd.scm b/gnu/packages/mpd.scm index b5a0d94a74..e36f87ed39 100644 --- a/gnu/packages/mpd.scm +++ b/gnu/packages/mpd.scm @@ -4,6 +4,7 @@ ;;; Copyright © 2014 Cyrill Schenkel <cyrill.schenkel@gmail.com> ;;; Copyright © 2014 Ian Denhardt <ian@zenhack.net> ;;; Copyright © 2015 Paul van der Walt <paul@denknerd.org> +;;; Copyright © 2016 Leo Famulari <leo@famulari.name> ;;; ;;; This file is part of GNU Guix. ;;; @@ -202,12 +203,11 @@ terminal using ncurses.") '(#:configure-flags '("BOOST_LIB_SUFFIX=" "--with-taglib") #:phases - (alist-cons-after - 'unpack 'autogen - (lambda _ - (setenv "NOCONFIGURE" "true") - (zero? (system* "sh" "autogen.sh"))) - %standard-phases))) + (modify-phases %standard-phases + (add-after 'unpack 'autogen + (lambda _ + (setenv "NOCONFIGURE" "true") + (zero? (system* "sh" "autogen.sh"))))))) (synopsis "Featureful ncurses based MPD client inspired by ncmpc") (description "Ncmpcpp is an mpd client with a UI very similar to ncmpc, but it provides new useful features such as support for regular expressions |