diff options
author | Leo Famulari <leo@famulari.name> | 2018-12-05 01:28:00 -0500 |
---|---|---|
committer | Leo Famulari <leo@famulari.name> | 2018-12-07 19:42:59 -0500 |
commit | b9103c827c605dee32baf62816a0429543b3e451 (patch) | |
tree | 4ddf47b57942a049c6cde51a2c81e4e4be999618 /gnu/packages/mpd.scm | |
parent | 23a1f738b1ef83c3dcb329e1c68617b0452e6a07 (diff) | |
download | patches-b9103c827c605dee32baf62816a0429543b3e451.tar patches-b9103c827c605dee32baf62816a0429543b3e451.tar.gz |
gnu: Add a C++14 variant of Boost for packages that need it.
Fixes <https://bugs.gnu.org/33605> and <https://bugs.gnu.org/33610>.
* gnu/packages/boost.scm (boost-cxx14): New variable.
* gnu/packages/compression.scm (innoextract)[inputs]: Use it.
* gnu/packages/mpd.scm (ncmpcpp)[inputs]: Use it.
Diffstat (limited to 'gnu/packages/mpd.scm')
-rw-r--r-- | gnu/packages/mpd.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/mpd.scm b/gnu/packages/mpd.scm index fe8610ab94..0a81a3b8b8 100644 --- a/gnu/packages/mpd.scm +++ b/gnu/packages/mpd.scm @@ -244,7 +244,7 @@ terminal using ncurses.") "0m0mjb049sl62vx13h9waavysa30mk0rphacksnvf94n13la62v5")))) (build-system gnu-build-system) (inputs `(("libmpdclient" ,libmpdclient) - ("boost" ,boost) + ("boost" ,boost-cxx14) ("readline" ,readline) ("ncurses" ,ncurses) ("taglib" ,taglib) |