Re: Output all dependencies recursively for package

2021-01-31 Thread zimoun
Hi Phil, On Sun, 31 Jan 2021 at 12:59, Phil wrote: > I'm looking for a recursive list of all bar@version given package > foo? > > Something like: > guix show --recursive-dependencies foo > > Giving: > dependencies: bar@version, some-dependency-of-bar@version I proposed something like that:

Re: Yet another locale question on a foreign distro

2021-01-31 Thread Fredrik Salomonsson
Hi Julien, Julien Lepiller writes: > Does gpg-agent change the locale of the system somehow? What's the locale it > launches the pinentry with? Kind of, it request the pinentry program to at least set LC_CTYPE and LC_MESSAGES to the requested locale. Currently my pinentry-rofi ignore these

Re: Need guidance on how to proceed

2021-01-31 Thread Leo Famulari
On Sun, Jan 31, 2021 at 01:21:54PM -0700, K I wrote: > Greetings! > > I am attempting to unpack and use a program in .tar.gz format for programming > lisp. > When I unpack and try to use .tar.gz, it says the file doesn't exist. > > What should be my path forward to try and get this to run on

Re: Need guidance on how to proceed

2021-01-31 Thread Jay Sulzberger
On Sun, 31 Jan 2021, K I wrote: Greetings! I am attempting to unpack and use a program in .tar.gz format for programming lisp. When I unpack and try to use .tar.gz, it says the file doesn't exist. What should be my path forward to try and get this to run on Guix? Thank you, Kozo If you

Re: Need guidance on how to proceed

2021-01-31 Thread Jay Sulzberger
On Sun, 31 Jan 2021, Leo Famulari wrote: On Sun, Jan 31, 2021 at 01:21:54PM -0700, K I wrote: Greetings! I am attempting to unpack and use a program in .tar.gz format for programming lisp. When I unpack and try to use .tar.gz, it says the file doesn't exist. What should be my path

Re: Output all dependencies recursively for package

2021-01-31 Thread Tobias Geerinckx-Rice
Phil, Phil writes: I'm looking for a command similar to 'guix show' which will give a packages explicit dependencies, recursively. Best ditch the d-word; it's too ambiguous to be useful, as illustrated by this thread. If by ‘explicit dependencies’ you mean all explicitly listed inputs

Need guidance on how to proceed

2021-01-31 Thread K I
Greetings! I am attempting to unpack and use a program in .tar.gz format for programming lisp. When I unpack and try to use .tar.gz, it says the file doesn't exist. What should be my path forward to try and get this to run on Guix? Thank you, Kozo

Re: Make changes to be applied after guix install and system reconfigure?

2021-01-31 Thread Tobias Geerinckx-Rice
Znavko, I must admit it's not clear to me what you're asking. 449 guix install build-essential This is not a Guix package. Nor is ‘gcc’, but trying to install it will say so and install ‘gcc-toolchain’ for you instead. Are you copy-pasting instructions for Debian into a Guix System?

Re: Output all dependencies recursively for package

2021-01-31 Thread zimoun
Hi Tobias, On Mon, 1 Feb 2021 at 02:33, Tobias Geerinckx-Rice wrote: > Perhaps it's good enough to warrant ‘guix refresh > --list-transitive-inputs’ (to avoid philosophical discussions > about what constitutes a graph :-). There would be the same philosophical discussion about what constitutes

Make changes to be applied after guix install and system reconfigure?

2021-01-31 Thread znavko--- via
Hi, Guix! I go to try programming stuff. And I have a question to ask. When I install some essential system packages or also reconfigure system the changes do not go to be applied on the fly. F. e. trying to work with dates in C I have such a 'history': 444 date -d 130683 445 glibc 446

Re: Make changes to be applied after guix install and system reconfigure?

2021-01-31 Thread John Soo
Hi znavko, You need to remove gcc and install gcc-toolchain instead. Hope that helps, John

Re: Yet another locale question on a foreign distro

2021-01-31 Thread Julien Lepiller
Does gpg-agent change the locale of the system somehow? What's the locale it launches the pinentry with? Does it exist in $GUIX_LOCPATH? Le 31 janvier 2021 01:06:38 GMT-05:00, Fredrik Salomonsson a écrit : > >Hi guix, > >I've developed a little tool to use rofi as a pinentry for gpg-agent

Output all dependencies recursively for package

2021-01-31 Thread Phil
Hi all, I'm looking for a command similar to 'guix show' which will give a packages explicit dependencies, recursively. Basically something like python's 'pip freeze' for a specific package. I know 'guix graph' can do this but the output is much more elaborate than I need, also 'guix export'

Re: Output all dependencies recursively for package

2021-01-31 Thread Joshua Branson
Phil writes: > Hi all, > > I'm looking for a command similar to 'guix show' which will give a packages > explicit > dependencies, recursively. > > Basically something like python's 'pip freeze' for a specific package. > Does guix-refresh --recursive do that? #+BEGIN_SRC sh $ guix refresh

Re: Output all dependencies recursively for package

2021-01-31 Thread Efraim Flashner
On Sun, Jan 31, 2021 at 12:59:40PM +, Phil wrote: > Hi all, > > I'm looking for a command similar to 'guix show' which will give a packages > explicit > dependencies, recursively. > > Basically something like python's 'pip freeze' for a specific package. > > I know 'guix graph' can do this