bug-guix
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#62698: bind:utils


From: Brian Cully
Subject: bug#62698: bind:utils
Date: Sat, 08 Apr 2023 11:12:54 -0400
User-agent: mu4e 1.10.0; emacs 28.2


Αντώνιος Τσώλης <tsolis.antonios@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

[Prev in Thread] Current Thread [Next in Thread]