Howdy! Paul <p...@denknerd.org> skribis:
> commit cd77777602af48a32466d8d720a6c70a89721607 > Author: Paul van der Walt <p...@denknerd.org> > Date: Sat Mar 7 13:40:40 2015 +0100 > > gnu: ncmpcpp: Enable taglib support. > > * gnu/packages/mpd.scm (ncmpcpp): Add --with-taglib configure flag. [...] > diff --git a/gnu/packages/mpd.scm b/gnu/packages/mpd.scm > index 2313b30..2f9ad72 100644 > --- a/gnu/packages/mpd.scm > +++ b/gnu/packages/mpd.scm > @@ -196,10 +196,11 @@ terminal using ncurses.") > `(("pkg-config" ,pkg-config) > ("automake" ,automake) > ("autoconf" ,autoconf) > - ("libtool" ,libtool))) > + ("libtool" ,libtool) > + ("taglib" ,taglib))) ‘taglib’ should go to a new ‘inputs’ field, not to ‘native-inputs’ (the distinction between the two is for when cross-compiling: ‘native-inputs’ are things that need to be run on the machine that compiles, whereas ‘inputs’ is code to run on the target machine.) Could you adjust accordingly? Thanks, Ludo’.