Re: Run .deb or .rpm packages

2021-12-12 Thread Vagrant Cascadian
On 2021-12-12, Efraim Flashner wrote: > On Fri, Dec 10, 2021 at 10:30:36AM +0100, Hartmut Goebel wrote: >> Le 8 décembre 2021 14:46:24 GMT-05:00, "André A. >> Gomes" a écrit : >> >> > --8<---cut here---start->8--- >> > $ sudo dpkg -i foo-package.deb >> > dpkg:

Re: Loading Common Lisp Libraries with GNU/Guix in a REPL

2021-12-12 Thread raingloom
On Sun, 12 Dec 2021 11:01:34 -0600 Katherine Cox-Buday wrote: > Edouard Klein writes: > > I also don't know the canonical way, but I do it a different way. I'm > wondering what the simpler way to do things is? I know nothing about > rlwrap. But here's how I do things: > > Depending on the proj

Re: Loading Common Lisp Libraries with GNU/Guix in a REPL

2021-12-12 Thread Katherine Cox-Buday
Edouard Klein writes: I also don't know the canonical way, but I do it a different way. I'm wondering what the simpler way to do things is? I know nothing about rlwrap. But here's how I do things: Depending on the project, I may have a =guix.scm= package defined for it or not. This only chang

Re: sbcl-ningle: permission denied

2021-12-12 Thread Guillaume Le Vaillant
The package for ningle has a custom phase changing the name of the compiled files, this is why when you try to load it ASDF thinks that the system has not been compiled yet, tries to compile it and fails because it can't write the compiled files to the read-only "/gnu/store/...". I don't know if t

Re: Run .deb or .rpm packages

2021-12-12 Thread Efraim Flashner
On Fri, Dec 10, 2021 at 10:30:36AM +0100, Hartmut Goebel wrote: > Hi, > > Le 8 décembre 2021 14:46:24 GMT-05:00, "André A. > Gomes" a écrit : > > > --8<---cut here---start->8--- > > $ sudo dpkg -i foo-package.deb > > dpkg: error: unable to access the dpkg dat

Re: sbcl-ningle: permission denied

2021-12-12 Thread edk
Hi ! The store (everything under /gnu/store) is read-only. The only way to edit it is when building a package. If cl-ningle does not call asdf:make, then you'll need to edit the package so that it does. Maybe there's a way to tell asdf to put build products somewhere else than near the source co