Αντώνιος Τσώλης <tsolis.anton...@gmail.com> writes:

Well, I use this:

  (packages
(append (map specification->package+output
          '("bind:utils" ... ))
     %base-packages))

But I am new to scheme/guile/guix, so maybe I do something wrong. Anyway, thanks for confirming that it works on your
side. It's probably an issue with my configuration. :)

I suspected this was the problem. You really do need to use:

(map (compose list specification->package+output)
    '("bind:utils"))

Because ‘specification->package+output’ returns two values, and you'll need to combine those into a list for the second value (the ‘utils’ output) to be seen.

-bjc



Reply via email to