Re: Sourcing a script in phases

2022-12-26 Thread Reza Housseini
(invoke "source" "env.sh") or (invoke "." "env.sh") I had the same problem and ended up doing (invoke "bash" "-c" "source env && ./command") not the most elegant, but it did work. Cheers, -- Reza Housseini This message is signed with my GnuPG key: C0F3 0812 9AF2 80F4 0830 C2C1 C375

Specifying rust version

2022-12-26 Thread phodina via
Hi, the documentation for 'cargo-build-system' [1] refers to parameter '#:rust' which allows user to specify the Rust compiler version. However, I've found this commit 9635119a61a9ab1b023558727fcdf1816fdc7fc6 from Maxim which makes all 'rust-.*' definitions private. Is there a way to specify

Re: Corefreq: How to specify output in OS definition

2022-12-26 Thread phodina
Hello Efraim, > I was able to get it to say it would be added when I added the following > to my OS config: > > (kernel-loadable-modules (list `(,corefreq "linux-module"))) > > I didn't actually try building or running it though. Adding this line to OS definition fixes the initial issue.

Re: Stumpwm & using Lisp in guix - particularly quicklisp

2022-12-26 Thread Paul Jewell via
On 25/12/2022 08:05, Paul Jewell via wrote: I have now gone down this path, and nearly everything is working as expected. The only problem I am tripping up with is sbcl-slime-swank is trying to (require 'sb-cltl2) and failing, even though I have added sbcl-trivial-cltl2 to my system

Re: Sourcing a script in phases

2022-12-26 Thread Edouard Klein
Hi, It's probably not the right answer, but for lack of time to find the actual solution when I faced the same problem as you, here is what I did: https://gitlab.com/edouardklein/guix/-/blob/beaverlabs/beaver/packages/python-xyz.scm#L191 #+begin_src scheme #:builder (begin

Re: Corefreq: How to specify output in OS definition

2022-12-26 Thread Efraim Flashner
On Sat, Dec 24, 2022 at 10:47:33PM +, Tobias Geerinckx-Rice wrote: > Hi Petr, > > I think this package might predate k-l-m, in which case the honest answer is > ‘I don't’ :-) If it's not supported, however, it should be. > > I'll try to remember to check how I use it when I get back to my

Re: installing of two versions of package Musescore

2022-12-26 Thread Wojtek Kosior via
Hi Gottfried, > 3. I want to have "Musescore3.6.2" as the name of this profile, so that > I quickly now what is in there. Is that possible? If not how this > profile is specified to see the difference to my main profile? > > 4. what should I write in "path/to/profile" > because AFAIU the

Re: Can't type Japanese anymore

2022-12-26 Thread Yasuaki Kudo
It has been a long time since I switched to Ubuntu (and I use Guix as an additional package manager in Ubuntu - this way I get maximum mainstream compatibility, which is very helpful for work, and the flexibility that comes with Guix! ) but just one thing I vaguely remember for situations like

home-files-service-type - naming restrictions?

2022-12-26 Thread Paul Jewell via
Good afternoon, I have a home configuration which has worked without issue for some time, but now I wanted to add the configuration files for urxvt: (home-environment (packages ...) (services (list ... (simple-service 'urxvt-config home-files-service-type

Can't type Japanese anymore

2022-12-26 Thread Luis Felipe
Hello, After upgrading recently to Guix System 9cb42f7, I can't type Japanese anymore. It disappeared from the list, even though I still have ibus-anthy installed. Also, the workaround in https://issues.guix.gnu.org/35610 does not work anymore. If you are using a more recent version of the

Re: home-files-service-type - naming restrictions?

2022-12-26 Thread Paul Jewell via
On 26/12/2022 14:53, Paul Jewell via wrote: Good afternoon, I have a home configuration which has worked without issue for some time, but now I wanted to add the configuration files for urxvt: (home-environment   (packages ...)   (services     (list   ...   (simple-service

Re: Can't type Japanese anymore

2022-12-26 Thread Maxim Cournoyer
Hi Luis, Luis Felipe writes: > Hello, > > After upgrading recently to Guix System 9cb42f7, I can't type Japanese > anymore. It disappeared from the list, even though I still have > ibus-anthy installed. > > Also, the workaround in https://issues.guix.gnu.org/35610 does not work > anymore. > >

Help with DBus Tests Failing for Python Package

2022-12-26 Thread Jaft
I'm attempting to package the Python package DasBus (https://github.com/rhinstaller/dasbus/) and the tests, when it tries to test by making DBus calls, are failing. For specificity, the error output is: > test_additional_arguments (tests.test_dbus.DBusExampleTestCase) > Call a DBus method. ...

Re: Corefreq: How to specify output in OS definition

2022-12-26 Thread Efraim Flashner
On Mon, Dec 26, 2022 at 06:11:50PM +, phodina wrote: > Hello Efraim, > > > I was able to get it to say it would be added when I added the following > > to my OS config: > > > > > (kernel-loadable-modules (list `(,corefreq "linux-module"))) > > > > > I didn't actually try building or

Re: Specifying rust version

2022-12-26 Thread Efraim Flashner
On Mon, Dec 26, 2022 at 09:00:40AM +, phodina wrote: > Hi, > > the documentation for 'cargo-build-system' [1] refers to parameter > '#:rust' which allows user to specify the Rust compiler version. > However, I've found this commit > 9635119a61a9ab1b023558727fcdf1816fdc7fc6 from Maxim which