bug#62698: bind:utils

2023-05-04 Thread Maxim Cournoyer
Hi Brian, Brian Cully writes: > Maxim Cournoyer writes: > >> Thanks for finding the problem. Should we leave this bug open until >> specification->package+output is properly documented in our manual, >> with >> an example? If yes, would you like to try your hand at adding it? > > I've looked

bug#62698: bind:utils

2023-05-03 Thread Brian Cully via Bug reports for GNU Guix
Maxim Cournoyer writes: Thanks for finding the problem. Should we leave this bug open until specification->package+output is properly documented in our manual, with an example? If yes, would you like to try your hand at adding it? I've looked at this briefly, and can't figure out a good

bug#62698: bind:utils

2023-05-03 Thread Maxim Cournoyer
Hi, Brian Cully writes: > Αντώνιος Τσώλης 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, tha

bug#62698: bind:utils

2023-04-23 Thread Αντώνιος Τσώλης
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 con

bug#62698: bind:utils

2023-04-23 Thread Αντώνιος Τσώλης
The bind:utils (dig, host, nslookup) are not copied/included in any bin path.

bug#62698: bind:utils

2023-04-23 Thread Αντώνιος Τσώλης
Yes, they are included when "guix shell ..." etc. BUT they are not included when "sudo guix system reconfigure ..." On Thu, 6 Apr 2023 at 21:27, Brian Cully wrote: > They are included for me: > > --8<---cut here---start->8--- > bjc@psyduck:~/.config/emacs% fo

bug#62698: bind:utils

2023-04-08 Thread Brian Cully via Bug reports for GNU Guix
Αντώνιος Τσώλης 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.

bug#62698: bind:utils

2023-04-07 Thread Brian Cully via Bug reports for GNU Guix
With the config below, I have ‘host’, ‘dig’, and ‘nslookup’ in my path. Note that I'm using the ‘(compose list specification->package+output)’ form, though. If you're not using that, you may be accidentally loading the ‘bind’ package with the default ‘out’ output, instead of the ‘utils’ one. If tha

bug#62698: bind:utils

2023-04-07 Thread Jonathan Brielmaier
Works for me even in config.scm: (packages (append (map (compose list specification->package+output) (list "audacity" "bind:utils" "borg" "bridge-utils" ;;.. "zstd")) %base-packages))

bug#62698: bind:utils

2023-04-06 Thread Brian Cully via Bug reports for GNU Guix
They are included for me: --8<---cut here---start->8--- bjc@psyduck:~/.config/emacs% for i in dig host nslookup; do which $i; done /net/snorlax/home/bjc/.guix-home/profile/bin/dig /net/snorlax/home/bjc/.guix-home/profile/bin/host /net/snorlax/home/bjc/.guix-home