Ludovic Courtès (2015-09-02 16:06 +0300) wrote: > Hello, > > For ‘r’, the *Guix Package Info* buffer omits IcedTea from the set of > inputs. It shows this: > > > Inputs : openblas-0.2.14, cairo-1.14.2, gfortran-4.9.3, icu4c-55.1, > lapack-3.5.0, libjpeg-9a, libpng-1.5.21, libtiff-4.0.3, > libxt-1.1.4, pcre-8.37, readline-6.3, zlib-1.2.7 > > whereas the recipe has this: > > > (inputs > `(("openblas" ,openblas) > ("cairo" ,cairo) > ("gfortran" ,gfortran) > ("icu4c" ,icu4c) > ("icedtea6" ,icedtea6 "jdk") > ("lapack" ,lapack) > ("libjpeg" ,libjpeg) > ("libpng" ,libpng) > ("libtiff" ,libtiff) > ("libxt" ,libxt) > ("pcre" ,pcre) > ("readline" ,readline) > ("zlib" ,zlib))) > > My guess is that somewhere, the triplet for IcedTea is silently filtered > out. Yes, you are right, it is filtered in ‘package-inputs-names’ in "emacs/guix-main.scm". The easiest fix would be the following