Re:Rust development tools

2019-04-24 Thread mikadoZero
Thanks for pointing out the general steps. I do not think I am going to be able to work on this soon.

Re:Search for package output

2019-04-24 Thread mikadoZero
Thank you

Search for package output

2019-04-19 Thread mikadoZero
`guix package -s cargo` This does not return rust even though cargo is an output of rust. The manual says it looks at name, synopsis, or description. So this is not a surprise. Is there a way to search for programs that are an output of a package? I looked at "4.2 Invoking ‘guix package’" in the

Re: Rust development tools

2019-04-18 Thread mikadoZero
Ivan Petkov writes: > Hi! > >> On Apr 17, 2019, at 7:26 PM, mikadoZero wrote: > > The rust integrations within Guix are a bit incomplete at the moment, but > I’ve been > making some efforts to get things going. Right now it is possible to build > individual &

Rust development tools

2019-04-17 Thread mikadoZero
The rust book is a learning resource for the rust programming language. https://doc.rust-lang.org/book/title-page.html It includes content on these rust development tools: * cargo + build system and package manager + provides dependency management + used through the entire rust book https

Re: guix pull package output truncated

2019-04-17 Thread mikadoZero
Thank you for pointing out `guix pull -l` for this. Ludovic Courtès writes: > Hello! > > mikadoZero skribis: > >> Recently the output of guix pull has changed. It no longer gives the >> complete output for the "New in this revision" section. > > For

Re: Unexpected XDG and GTK+ with system reconfigure

2019-04-13 Thread mikadoZero
Thank you for explaining this. Mark H Weaver writes: > Hi, > > mikadoZero writes: > >> I am seeing some unexpected activity listed in the output of >> `guix system reconfigure`. >> >> I am not expecting to see: >> >> * XDG activity as th

Unexpected XDG and GTK+ with system reconfigure

2019-04-13 Thread mikadoZero
I am seeing some unexpected activity listed in the output of `guix system reconfigure`. I am not expecting to see: * XDG activity as the system configuration does not include anything related to xorg * GTK+ activity as there are no graphical programs in the system configuration The four une

guix pull package output truncated

2019-04-13 Thread mikadoZero
Recently the output of guix pull has changed. It no longer gives the complete output for the "New in this revision" section. Is there a flag I can pass to guix pull to turn off this truncation. I found it informative to be able to see all the packages that were being added and upgraded and would

Re: Way to synchronize files like Dropbox

2019-04-12 Thread mikadoZero
You could look into: * rsync * duplicity * syncthing Adam Mazurkiewicz writes: > What is the way to synchronize files with a remote storage like > Dropbox? I work in several places and I need to get the same document > files in these places. On Debian I was using just Dropbox. I need a > free

Re: Build package for multiple platforms

2019-03-24 Thread mikadoZero
Efraim Flashner writes: > On Fri, Mar 22, 2019 at 07:20:42PM -0400, mikadoZero wrote: > >> Tobias Geerinckx-Rice writes: >> >> > mikadoZero, >> > >> > mikadoZero wrote: >> >> (service qemu-binfmt-service-type >> >> (qemu

Re: Build package for multiple platforms

2019-03-22 Thread mikadoZero
Tobias Geerinckx-Rice writes: > mikadoZero, > > mikadoZero wrote: >> (service qemu-binfmt-service-type >> (qemu-binfmt-configuration >>(platforms (lookup-qemu-platforms "arm" "aarch64" "ppc" >> "mips64el")) >>

Build package for multiple platforms

2019-03-22 Thread mikadoZero
I am preparing a patch for a package. I am following the manual section "14.6 Submitting Patches". The fifth suggestion is to build the package for multiple platforms. I have added these to the system configuration file: module: virtualization package: qemu service (taken from 14.6 Submitting Pa

Re: guix lint questions

2019-03-22 Thread mikadoZero
Thank you for your helpful reply. I can now successfully run: `./pre-inst-env guix lint emacs-ace-link` `./pre-inst-env guix build --rounds=4 emacs-ace-link` Tobias Geerinckx-Rice writes: > mikadoZero, > > mikadoZero wrote: >> I have three questions about the output of: >

guix lint questions

2019-03-20 Thread mikadoZero
I am preparing my first package. I have questions about the output of guix lint. I have done: `guix environment guix` `./bootstrap` `./configure --localstatedir=/var` `make` `make check` On a new git branch I have added emacs-ace-link to emacs-xyz.scm which is: (define-public emacs-ace-link (

Re: root zsh to bash

2019-03-20 Thread mikadoZero
Ricardo Wurmus writes: > mikadoZero writes: > >> I am trying to switch the root user from zsh to bash. >> >> The relevant part of my system configuration is: >> >> (users (cons (user-account >>(name "guix") >>(group

Re: 14.1 Building from Git

2019-03-20 Thread mikadoZero
Tobias Geerinckx-Rice writes: > ... > mikadoZero wrote: >> I did copy the suggested exports that were output when I ran `guix >> package --manifest=manifest.scm` into .zprofile and they were: > > Guix does *not* suggest copying these into shell initialisation files, >

Re: 14.1 Building from Git

2019-03-20 Thread mikadoZero
Ricardo Wurmus writes: > mikadoZero writes: > >> I did copy the suggested exports that were output when I ran `guix >> package --manifest=manifest.scm` into .zprofile and they were: > > I suggest to not do this and to add this snippet instead: > > export GUI

root zsh to bash

2019-03-19 Thread mikadoZero
I am trying to switch the root user from zsh to bash. The relevant part of my system configuration is: (users (cons (user-account (name "guix") (group "users") (supplementary-groups '("wheel" "netdev" "audio")) (home-directory "/home/guix"))

Re: 14.1 Building from Git

2019-03-19 Thread mikadoZero
Leo Famulari writes: > On Mon, Mar 18, 2019 at 03:05:05PM -0400, mikadoZero wrote: >> I get an error when I run `./configure --localstatedir=/var/guix/db` it > > It should be '--localstatedir=/var' Thank you. I am now using this: `./configure --localstatedir=/var` B

Re: 14.1 Building from Git

2019-03-19 Thread mikadoZero
Ricardo Wurmus writes: > ... >> ACLOCAL_PATH=/root/.guix-profile/share/aclocal:/run/current-system/profile/share/acl >> ocal:/gnu/store/kjmqpchkfy8rvv19jvd14q40shm9fk2p-profile/share/aclocal > > Why are /root/.guix-profile directories first? Are setting these > variables in some shell initializa

Re: 14.1 Building from Git

2019-03-18 Thread mikadoZero
Thanks for your help. Giovanni Biscuolo writes: > Hi mikadoZero, > > mikadoZero writes: > >> I am trying to follow the instruction in the Contributing section of the >> manual, as I want to submit some patches. Following "14.1 Building from >> Git&

Re: 14.1 Building from Git

2019-03-18 Thread mikadoZero
Ricardo Wurmus writes: > mikadoZero writes: > >> I am trying to follow the instruction in the Contributing section of the >> manual, as I want to submit some patches. Following "14.1 Building from >> Git" I am getting an error when running `./bootstrap`. >

14.1 Building from Git

2019-03-17 Thread mikadoZero
I am trying to follow the instruction in the Contributing section of the manual, as I want to submit some patches. Following "14.1 Building from Git" I am getting an error when running `./bootstrap`. `guix describe` guix 19c0cdb repository URL: https://git.savannah.gnu.org/git/guix.git br