Re: Install older version of a package with the "@version" specifier

2020-06-26 Thread Lo Peter
Thanks a lot for the clarifications. On Sat, Jun 27, 2020 at 2:04 AM zimoun wrote: > > Dear, > > On Fri, 26 Jun 2020 at 19:15, Julien Lepiller wrote: > > > - use r from an old revision of guix that had the version you're looking > > for. This can be done using an "inferior". The package will mo

help with USB bluetooth driver

2020-06-26 Thread Jesse Gibbons
I recently purchased the device described here H-node says it should work without nonfree drivers. But when I plug it in, the kernel says non-free firmware was disabled. Do

Re: Printer configuration

2020-06-26 Thread Kyle Andrews
Wiktor Żelazny writes: > On Fri, Jun 26, 2020 at 02:13:14PM -0400, Kyle Andrews wrote: >> >> Wiktor Żelazny writes: >> >> > Does /gnu/store/.../cups/filter/rastertoqpdl exist? >> >> Yes, it exists in the splix package, but not in the cups package. >> Looking at the Guix source code I saw that ~s

Re: Printer configuration

2020-06-26 Thread Tobias Geerinckx-Rice
Kyle, I'd strongly recommend using the ‘real’ CUPS interface at localhost:631 over any third-party helper, but… Kyle Andrews 写道: The CUPS localhost page was behaving strangely (stalling on load) when I tried to click the administration tab. I can confirm that the Administration tab freezes

non-ascii char in mount-point name ?

2020-06-26 Thread Fulbert
Hi, In my Guix system configuration file, I have a (file-system … (mount-point "/mnt/raté")) with a 'é' (U+00E9) in its name, which gives the following error when trying to reconfigure : system: error: invalid character `�' in name `shepherd-file-system--mnt-raté.scm-builder' Did I

Re: Printer configuration

2020-06-26 Thread Wiktor Żelazny
On Fri, Jun 26, 2020 at 02:13:14PM -0400, Kyle Andrews wrote: > > Wiktor Żelazny writes: > > > Does /gnu/store/.../cups/filter/rastertoqpdl exist? > > Yes, it exists in the splix package, but not in the cups package. > Looking at the Guix source code I saw that ~system-config-printer~ (in > ~guix/g

Re: Printer configuration

2020-06-26 Thread Kyle Andrews
Wiktor Żelazny writes: > On Fri, Jun 26, 2020 at 12:56:08PM -0400, Kyle Andrews wrote: > >> I observed no change in the error I get when trying to print a test >> page. > > Does /gnu/store/.../cups/filter/rastertoqpdl exist? > > Is the user printing the test page a member of the lp group (lpadmi

Re: Install older version of a package with the "@version" specifier

2020-06-26 Thread zimoun
Dear, On Fri, 26 Jun 2020 at 19:15, Julien Lepiller wrote: > - use r from an old revision of guix that had the version you're looking for. > This can be done using an "inferior". The package will more likely build (and > even have substitutes), but it uses the old version of all its dependenci

Re: Printer configuration

2020-06-26 Thread Wiktor Żelazny
On Fri, Jun 26, 2020 at 12:56:08PM -0400, Kyle Andrews wrote: > I observed no change in the error I get when trying to print a test > page. Does /gnu/store/.../cups/filter/rastertoqpdl exist? Is the user printing the test page a member of the lp group (lpadmin might also help)? WŻ signature.a

Re: Install older version of a package with the "@version" specifier

2020-06-26 Thread Julien Lepiller
Le 26 juin 2020 12:07:42 GMT-04:00, Lo Peter a écrit : >Dear all, > >I am trying to install r version 3.6.3, where the current version is at >4.0.2. > >Accordingly to the manual at >https://guix.gnu.org/manual/en/html_node/Invoking-guix-package.html it >should be possible to specify the package v

Re: Printer configuration

2020-06-26 Thread Kyle Andrews
Wiktor Żelazny writes: > On Thu, Jun 25, 2020 at 10:11:36PM -0400, Kyle Andrews wrote: > >> (use-modules ... >> (gnu packages cups) >> ...) > >> (service cups-service-type >> (cups-configuration >> (extensions >> (list h

Install older version of a package with the "@version" specifier

2020-06-26 Thread Lo Peter
Dear all, I am trying to install r version 3.6.3, where the current version is at 4.0.2. Accordingly to the manual at https://guix.gnu.org/manual/en/html_node/Invoking-guix-package.html it should be possible to specify the package version such as "guix package -i r@3.6.2", but on my guix (install

Re: Building packages in REPL

2020-06-26 Thread Efraim Flashner
On Fri, Jun 26, 2020 at 12:00:17PM +0200, zimoun wrote: > Dear, > > On Fri, 26 Jun 2020 at 09:25, Konrad Hinsen > wrote: > > Anthony Quizon writes: > > > >> Is there a way that I can build a package via the repl? > > Well, it is not what you are asking I guess, but it is possible: > > --8<---

Re: installing buildutils-gold

2020-06-26 Thread Anthony Quizon
Awesome, thanks! On Fri, Jun 26, 2020 at 10:07 PM Marius Bakke wrote: > Hello Anthony, > > Anthony Quizon writes: > > > Hello, > > I'm trying to install gold linker using guix. > > I noticed there is a package in `(gnu packages base)` called > > "binutils-gold". However, it doesn't come up on t

Re: installing buildutils-gold

2020-06-26 Thread Marius Bakke
Hello Anthony, Anthony Quizon writes: > Hello, > I'm trying to install gold linker using guix. > I noticed there is a package in `(gnu packages base)` called > "binutils-gold". However, it doesn't come up on the search via `guix search > binutils-gold` and I'm unable to install it. > > Why is th

Re: BPF in linux-libre

2020-06-26 Thread Mathieu Othacehe
Hello John, > ld: > /gnu/store/80y2wbx9lrhvwp41nnyjjsb4g9ff8avn-clang-toolchain-9.0.1/lib/libbfd.a(compress.o): > undefined reference to symbol 'inflateEnd' > ld: > /gnu/store/80y2wbx9lrhvwp41nnyjjsb4g9ff8avn-clang-toolchain-9.0.1/lib/libz.so.1: > error adding symbols: DSO missing from comman

Re: Building packages in REPL

2020-06-26 Thread zimoun
Hi Julien, On Fri, 26 Jun 2020 at 06:17, Julien Lepiller wrote: > One way to do this with the guix API is to get the derivation, then build it: > > (use-modules (guix derivations) (guix store) (gnu packages bash)) > (define package bash-minimal) > (define store (open-connection)) > (define der (

Re: Building packages in REPL

2020-06-26 Thread Julien Lepiller
Le 26 juin 2020 06:00:17 GMT-04:00, zimoun a écrit : >Dear, > >On Fri, 26 Jun 2020 at 09:25, Konrad Hinsen > wrote: >> Anthony Quizon writes: >> >>> Is there a way that I can build a package via the repl? > >Well, it is not what you are asking I guess, but it is possible: > >--8<---cu

Re: Building packages in REPL

2020-06-26 Thread zimoun
Dear, On Fri, 26 Jun 2020 at 09:25, Konrad Hinsen wrote: > Anthony Quizon writes: > >> Is there a way that I can build a package via the repl? Well, it is not what you are asking I guess, but it is possible: --8<---cut here---start->8--- $ guix repl scheme@(

Re: Building packages in REPL

2020-06-26 Thread Konrad Hinsen
Anthony Quizon writes: > Is there a way that I can build a package via the repl? As far as I know, no. I have been looking for this as well, in order to make package development more interactive. > For example, > If I had a channel with a custom package in it, can I do: > > `$ guix repl -L .` >

Re: Printer configuration

2020-06-26 Thread Wiktor Żelazny
On Thu, Jun 25, 2020 at 10:11:36PM -0400, Kyle Andrews wrote: > (use-modules ... >(gnu packages cups) > ...) > (service cups-service-type > (cups-configuration > (extensions >(list hplip-minimal cups-filters splix))