Re: define PATH and PROFILE

2021-01-03 Thread Christophe Pisteur
Le dimanche 03 janvier 2021 à 21:49 +0100, Tobias Geerinckx-Rice a écrit : > Hi Christophe, > > Christophe Pisteur 写道: > > 1) after guix pull, I get the following message: > > > > export PATH="$HOME/.config/guix/current/bin:$PATH" > > export > >

Re: GNU Guix 1.2.0 released

2021-01-03 Thread Roy Lemmon
Leo Famulari writes: > On Mon, Nov 23, 2020 at 04:07:25PM +0100, Ludovic Courtès wrote: >> We are pleased to announce the release of GNU Guix 1.2.0, which also >> marks the eighth anniversary of Guix today. > > Hooray! > >> This release corresponds to 10,248 commits over 6.5 months by 201

Re: EXWM: file or program not found, ls

2021-01-03 Thread Olivier Rojon
Hej, my login shell is bash, and I have edited it. Yet, adding the lines you have provided did not really help the issue. I have now written an .xsession file which looks like this: --8<---cut here---start->8---  #!/usr/bin/env bash . /etc/profile & .

Re: EXWM: file or program not found, ls

2021-01-03 Thread Pierre Neidhardt
Hi, You most probably have an issue with your dotfiles. Some comments below: Olivier Rojon writes: > --8<---cut here---start->8--- >  #!/usr/bin/env bash > . /etc/profile & > . ~/.bashrc & > exec exwm > --8<---cut

Re: Packaging the GNU Modula 2 compiler

2021-01-03 Thread Efraim Flashner
Try wrapping everything in a toolchain, as defined in (gnu packages commencement). Then you'll have the ld-wrapper you need and everything (define-public gm2-toolchain (make-gcc-toolchain gm2)) or even (define-public gm2-toolchain (package (inherit (make-gcc-toolchain gm2))

Packaging the GNU Modula 2 compiler

2021-01-03 Thread Holger Peters
I have trouble building the GNU Modula 2 compiler [[https://www.nongnu.org/gm2/][GNU Modula 2 compiler]]. And I think I could use some help with that. tl;dr: After packaging the GNU Modula 2 compiler with guix I get an error about: '/usr/bin/ld: cannot find crt1.o: No such file or directory'

Re: Anyone using Nix on Guix System?

2021-01-03 Thread Pierre Neidhardt
Hi! While I haven't used it in a few months, here is what I did to set it up: --8<---cut here---start->8--- (operating-system (inherit %bababa/os) (packages (cons* nix ...)) (services (cons* (service nix-service-type)

Anyone using Nix on Guix System?

2021-01-03 Thread Yasuaki Kudo
Happy New Year! I tried to use Nix on my Guix System by following instructions I found on the Internet (I added both nix package and nix service in my system configuration.scm file.) I then followed standard Nix installation instructions like adding a Nix channel, etc - only to find no