diff options
author | Leo Famulari <leo@famulari.name> | 2017-02-12 09:58:50 -0500 |
---|---|---|
committer | Leo Famulari <leo@famulari.name> | 2017-02-12 10:26:01 -0500 |
commit | 6ea86d7ec38f8c23957d6cce9ec6528987953ef8 (patch) | |
tree | 13694da22128a30fbfa07d66f7e50456fbd6ce63 | |
parent | 37acc8a07b37b7cd500496dec4d4737a389a2f7a (diff) | |
download | gnu-guix-6ea86d7ec38f8c23957d6cce9ec6528987953ef8.tar gnu-guix-6ea86d7ec38f8c23957d6cce9ec6528987953ef8.tar.gz |
gnu: mpd: Update to 0.20.4.
* gnu/packages/mpd.scm (mpd): Update to 0.20.4.
[native-inputs]: Add gcc-5.
-rw-r--r-- | gnu/packages/mpd.scm | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/gnu/packages/mpd.scm b/gnu/packages/mpd.scm index 5231c3f7f7..b817f1cf27 100644 --- a/gnu/packages/mpd.scm +++ b/gnu/packages/mpd.scm @@ -31,6 +31,7 @@ #:use-module (guix build-system python) #:use-module (gnu packages avahi) #:use-module (gnu packages boost) + #:use-module (gnu packages gcc) ; GCC@5 for MPD >= 0.20 #:use-module (gnu packages gettext) #:use-module (gnu packages gnome) #:use-module (gnu packages gtk) @@ -74,7 +75,7 @@ interfacing MPD in the C, C++ & Objective C languages.") (define-public mpd (package (name "mpd") - (version "0.19.21") + (version "0.20.4") (source (origin (method url-fetch) (uri @@ -83,7 +84,7 @@ interfacing MPD in the C, C++ & Objective C languages.") "/mpd-" version ".tar.xz")) (sha256 (base32 - "0c0p61p3jfh89pnqwd9nrw55krfvvnzhkpdq53g6njvg0aybh1c3")))) + "0a4psqsf71vc6hfgyv55jclsx8yb7lf4w840qlq6cq8j3hsjaavi")))) (build-system gnu-build-system) (arguments `(#:phases @@ -116,7 +117,8 @@ interfacing MPD in the C, C++ & Objective C languages.") ("pulseaudio" ,pulseaudio) ("sqlite" ,sqlite) ("zlib" ,zlib))) - (native-inputs `(("pkg-config" ,pkg-config))) + (native-inputs `(("gcc" ,gcc-5) ; Fails to build with GCC@4. + ("pkg-config" ,pkg-config))) ;; Missing optional inputs: ;; libyajl ;; libcdio_paranoia |