Re: [PATCH 12/13] gnu: Add xmonad.

2015-08-31 Thread Eric Bavier
On Mon, 31 Aug 2015 17:52:36 +0200 l...@gnu.org (Ludovic Courtès) wrote: > Siniša Biđin skribis: > > > On 2015-08-23 22:47, Eric Bavier wrote: > >> I had to replace "Exec=/etc/X11/Session/xmonad" with "Exec=xmonad" > >> in this xmonad.desktop file in order to launch an xmonad

Re: Installing a custom package on Guix binary setup

2015-08-31 Thread Vicente Vera
Wow, thanks! It worked fine. Instead of Emacs I built a modified R package, without texlive and icedtea6. After defining the GUIX_PACKAGE_PATH variable I moved there "my-R.scm", which included: (define-module (my-r) #:use-module ...) ; same as in statistics.scm (define-public my-r (package

[PATCH] Add deepTools.

2015-08-31 Thread Ricardo Wurmus
>From e34e21bf6222c3239c98dd6c8eee37023d266154 Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Mon, 31 Aug 2015 17:22:19 +0200 Subject: [PATCH] gnu: Add deeptools. * gnu/packages/bioinformatics.scm (deeptools): New variable. --- gnu/packages/bioinformatics.scm

Re: [PATCH] R build system and CRAN importer (updated)

2015-08-31 Thread Ludovic Courtès
Nothing serious, but I just realized this minor issue as I wrote “cairo” instead of “Cairo”: --8<---cut here---start->8--- $ ./pre-inst-env guix import cran cairo guix import: error: failed to download description for package 'cairo' --8<---cut

Re: [PATCH] Add perl-czplib.

2015-08-31 Thread Ludovic Courtès
Ricardo Wurmus skribis: > From 3d71c025deead1dbba365e09e6b2a1804b97dac1 Mon Sep 17 00:00:00 2001 > From: Ricardo Wurmus > Date: Thu, 27 Aug 2015 14:05:10 +0200 > Subject: [PATCH] gnu: Add perl-czplib. > > * gnu/packages/perl.scm

Re: [PATCH 12/13] gnu: Add xmonad.

2015-08-31 Thread Ludovic Courtès
Siniša Biđin skribis: > On 2015-08-23 22:47, Eric Bavier wrote: >> I had to replace "Exec=/etc/X11/Session/xmonad" with "Exec=xmonad" >> in this xmonad.desktop file in order to launch an xmonad session from >> Slim. Does this seem right? > > Definitely! [...] >> Does it make

Re: [PATCH] gnu: ratpoison: Add multiple monitors support.

2015-08-31 Thread Ludovic Courtès
Mathieu Lirzin skribis: > * gnu/packages/ratpoison.scm (ratpoison)[inputs]: Add "libxinerama". I found out that with this change, Ratpoison no longer works on my multi-monitor setup: When it starts, windows created from my ~/.xsession occupy just a subset of the screen,

[PATCH] Add ZynAddSubFX

2015-08-31 Thread Ricardo Wurmus
>From 3926ec4243d497438b080b83678b2bd05105024d Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Mon, 31 Aug 2015 17:33:56 +0200 Subject: [PATCH 1/2] gnu: Add minixml. * gnu/packages/xml.scm (minixml): New variable. --- gnu/packages/xml.scm | 28

Installing a custom package on Guix binary setup

2015-08-31 Thread Vicente Vera
Hello, Currently i'm using a Guix binary installation on top of my GNU/Linux distro. Setup went fine. So far i've installed only substitutes (everything OK), but there are some packages that I want to tweak a little. How can I install a customized .scm package definition? For example, I want

Re: Installing a custom package on Guix binary setup

2015-08-31 Thread Thompson, David
Hi Vicente, On Mon, Aug 31, 2015 at 12:42 PM, Vicente Vera wrote: > Hello, > > Currently i'm using a Guix binary installation on top of my GNU/Linux > distro. Setup went fine. > > So far i've installed only substitutes (everything OK), but there are > some packages that I

Re: Installing a custom package on Guix binary setup

2015-08-31 Thread Ludovic Courtès
Vicente Vera skribis: > How can I install a customized .scm package definition? > > For example, I want to pass some configure flags to Emacs (such as > '#:configure-flags '("--without-dbus" ...)'). I copied >

Re: [PATCH] Add Frescobaldi.

2015-08-31 Thread Ricardo Wurmus
Ludovic Courtès writes: >> AFAIK a patch to update fontconfig was submitted for the core-updates >> branch already. > > There’s no such thing in ‘core-updates’. However, one could set a > ‘fontconfig-update’ branch and update Fontconfig and possibly related > libraries. We could

Re: [PATCH] system: grub: Convert grub background using rsvg-convert

2015-08-31 Thread Ludovic Courtès
Andy Wingo skribis: > We could use guile-cairo / guile-rsvg to convert, fwiw. Better to do > that than to cause our graphics people to modify the image. Indeed, that sounds even better. I had an old stash with Guile-{RSVG,Present}, so I’ve just finished it and pushed. Would

Re: Texinfo in descriptions?

2015-08-31 Thread Ludovic Courtès
Mathieu Lirzin skribis: >> Any performance figures? For instance, time of ‘guix package -s’ before >> and after? > > With the updated patch I have obtained the following results for command > > time ./pre-inst-env guix package -s e > > - without patch: > real 0m25.381s

Re: [PATCH 0/4] emacs: Add "View graph" action to graph popup.

2015-08-31 Thread Ludovic Courtès
Alex Kost skribis: > This patchset adds "View graph" action to 'guix graph' popup (i.e., to > "M-x guix RET G"). By default the graph (png) will be opened in Emacs, > but this can be changed by setting 'guix-find-file-function' variable. > For example, I prefer to open

Re: [PATCH 1/4] emacs: Add code to pipe guix output to external program.

2015-08-31 Thread Ludovic Courtès
Alex Kost skribis: > * emacs/guix-main.scm: Use (ice-9 popen) module. > (pipe-guix-output): New procedure. OK.

Re: [PATCH 2/4] emacs: Add code to run 'dot' program.

2015-08-31 Thread Ludovic Courtès
Alex Kost skribis: > * emacs/guix-external.el: New file. > * emacs.am (ELFILES): Add it. LGTM.

Re: [PATCH 3/4] emacs: Allow to choose 'find-file' function.

2015-08-31 Thread Ludovic Courtès
Alex Kost skribis: > * emacs/guix-utils.el (guix-find-file-function): New variable. > (guix-find-file): Use it. OK. Nitpick: “Allow users to choose a ‘find-file’ function.” ^ ^ Ludo’.

Re: [PATCH 4/4] emacs: Add "View graph" action to graph popup.

2015-08-31 Thread Ludovic Courtès
Alex Kost skribis: > * emacs/guix-command.el: Require 'guix-external'. > (guix-run-view-graph): New function. > (guix-command-additional-execute-arguments, > guix-command-special-executors): Add entries for "View graph" action. OK! This is really cool, thanks a lot!

Re: Sound volume in XFCE

2015-08-31 Thread 白い熊@相撲道
On 2015-08-30 19:28, l...@gnu.org wrote: 白い熊@相撲道 skribis: I'm not proficient enough in Guix yet to do this. I'll wait for 'xfce4-pulseaudio-plugin' :O) Or you can use ‘pavucontrol’. Thanks, didn't know about this. It works. -- 白い熊@相撲道

Re: [PATCH 1/3] gnu: Add llfuse.

2015-08-31 Thread Ludovic Courtès
Alex Kost skribis: > Leo Famulari (2015-08-26 20:16 +0300) wrote: [...] >> + (description "Python-LLFUSE is a set of Python bindings for the low level >> +FUSE API. It requires at least FUSE 2.8.0 and supports both Python 2.x and >> +3.x.") > > IMHO mentioning a version

Re: libc upgrade vs. incompatible locales

2015-08-31 Thread Ludovic Courtès
Andy Wingo skribis: > On Sun 30 Aug 2015 21:46, l...@gnu.org (Ludovic Courtès) writes: > >> The binary format for locales is dependent on the libc version. Over >> the last few releases, it turned out to be compatible, but that of 2.22 >> differs from that of 2.21 (a new

Re: [PATCH] system: grub: Convert grub background using rsvg-convert

2015-08-31 Thread Andy Wingo
On Fri 28 Aug 2015 19:15, Luis Felipe López Acevedo writes: > Modifying the document background does not affect the design at all, > because we are using the dark rectangle on top of it as the background > of the image, so it doesn't matter what the background of

Re: libc upgrade vs. incompatible locales

2015-08-31 Thread Andy Wingo
On Sun 30 Aug 2015 21:46, l...@gnu.org (Ludovic Courtès) writes: > The binary format for locales is dependent on the libc version. Over > the last few releases, it turned out to be compatible, but that of 2.22 > differs from that of 2.21 (a new element was added to locale categories, > according

Re: Set screen resolution in X.

2015-08-31 Thread Dmitry Nikolaev
>> I've tried everything. Please help me. I want to help Guix, write new >> packages and patches, but I can't. My eyes hurts because of wrong >> resolution. Here is my full config.scm: > Are you sure the resolution you want is supported in your X session? > Please post the output of "xrandr". $

Re: [PATCH] Add Frescobaldi.

2015-08-31 Thread Ludovic Courtès
Ricardo Wurmus skribis: > First off: as this depends on Lilypond, and Lilypond uses Ghostscript to > convert Postscript files to PDF, and this feature is broken until we > update fontconfig to 2.11.94, one of the core features of Frescobaldi > (rendering a score with

Re: libc upgrade vs. incompatible locales

2015-08-31 Thread Andy Wingo
On Mon 31 Aug 2015 13:49, l...@gnu.org (Ludovic Courtès) writes: > Andy Wingo skribis: > >> On Sun 30 Aug 2015 21:46, l...@gnu.org (Ludovic Courtès) writes: >> >>> The binary format for locales is dependent on the libc version. Over >>> the last few releases, it turned out to

Re: [PATCH 2/3] gnu: Add python-msgpack.

2015-08-31 Thread Ludovic Courtès
Alex Kost skribis: > Leo Famulari (2015-08-26 20:16 +0300) wrote: > >> * gnu/packages/python.scm (python-msgpack, python2-msgpack): New variables. >> --- >> gnu/packages/python.scm | 25 + >> 1 file changed, 25 insertions(+) > > This patch LGTM.

[PATCH] Add ggplot2.

2015-08-31 Thread Ricardo Wurmus
Hi Guix, while writing the r-build-system and the CRAN importer I tested it by packaging ggplot2 with all dependencies. 16 patches are attached; all of them are very simple (this bodes well for the future of R on Guix). To make sure ggplot2 actually works I did this: guix package -p

Re: [PATCH] R build system and CRAN importer (updated)

2015-08-31 Thread Ricardo Wurmus
Ludovic Courtès writes: > Ricardo Wurmus skribis: > >> From 1c726be7746021f5d967d12154c057391e24585d Mon Sep 17 00:00:00 2001 >> From: Ricardo Wurmus >> Date: Fri, 24 Jul 2015 16:49:57 +0200 >> Subject: [PATCH 1/2]