[PATCH 3/4] gnu: shadow: User shells point to current profile

2015-04-15 Thread Andy Wingo
* gnu/system/shadow.scm (): "shell" field is a string, and should point to the current profile. This allows pkexec's dubious check that $SHELL is a valid shell to succeed. * gnu/services/base.scm (guix-build-accounts): * gnu/services/networking.scm (bitlbee-service): * gnu/system.scm (user-acc

[PATCH 2/4] gnu: gnome-settings-daemon: Use wacom packages.

2015-04-15 Thread Andy Wingo
* gnu/packages/gnome.scm (gnome-settings-daemon): Use the wacom packages. --- gnu/packages/gnome.scm | 18 ++ 1 file changed, 6 insertions(+), 12 deletions(-) diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index e7f854d..92e8e64 100644 --- a/gnu/packages/gnome.scm ++

[PATCH 1/4] gnu: Add wacom and xf86-input-wacom packages.

2015-04-15 Thread Andy Wingo
* gnu/packages/wacom.scm: New file. * gnu-system.am (GNU_SYSTEM_MODULES): Add wacom.scm. --- gnu-system.am | 1 + gnu/packages/wacom.scm | 97 ++ 2 files changed, 98 insertions(+) create mode 100644 gnu/packages/wacom.scm diff --git a/gnu

[PATCH 4/4] gnu: Add polkit service.

2015-04-15 Thread Andy Wingo
* gnu/services/polkit.scm: New file. * gnu-system.am (GNU_SYSTEM_MODULES): Add polkit service definition. --- gnu-system.am | 1 + gnu/services/polkit.scm | 67 + 2 files changed, 68 insertions(+) create mode 100644 gnu/services/polkit.sc

Re: [PATCH 1/4] gnu: Add wacom and xf86-input-wacom packages.

2015-04-15 Thread Ricardo Wurmus
Andy Wingo writes: > diff --git a/gnu/packages/wacom.scm b/gnu/packages/wacom.scm > new file mode 100644 > index 000..76e7b2e > --- /dev/null > +++ b/gnu/packages/wacom.scm > @@ -0,0 +1,97 @@ > +;;; GNU Guix --- Functional package management for GNU > +;;; Copyright © 2014 Eric Bavier Is th

Re: LVM support

2015-04-15 Thread Ludovic Courtès
Tomáš Čech skribis: > as project for my Hackweek in SUSE I decided to spend my time on LVM > support in GuixSD - something I miss greatly. This also means that > I'll have much less time for that after this week :( Well this is nice already! > So far I spent time on reviving my GuixSD installat

[PATCH] gnu: Add Biopython.

2015-04-15 Thread Ricardo Wurmus
>From ca3474b1a639e43d708aad4385057cd84e3cce8b Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Wed, 15 Apr 2015 17:46:35 +0200 Subject: [PATCH] gnu: Add Biopython. * gnu/packages/bioinformatics.scm (python-biopython, python2-biopython): New variables. --- gnu/packages/bioinformatics.scm |

Re: WIP: IcedTea7

2015-04-15 Thread Ricardo Wurmus
Also with the latest release of IcedTea (2.5.5) I get the same linker error. I obviously do not get this with IcedTea 1.13.x. Here's the matching section of the build logs for IcedTea 1.13.7 where you see ... nothing bad at all happening: ... make[6]: Entering directory '/buildtmp/nix-

Re: [PATCH] gnu: Add Biopython.

2015-04-15 Thread Ludovic Courtès
Ricardo Wurmus skribis: > From ca3474b1a639e43d708aad4385057cd84e3cce8b Mon Sep 17 00:00:00 2001 > From: Ricardo Wurmus > Date: Wed, 15 Apr 2015 17:46:35 +0200 > Subject: [PATCH] gnu: Add Biopython. > > * gnu/packages/bioinformatics.scm (python-biopython, python2-biopython): New > variables.

Re: [PATCH] gnu: tbb: Set library rpath.

2015-04-15 Thread Ludovic Courtès
Ricardo Wurmus skribis: > Note: I did not run the complete test suite again (because it takes a > very long time on my machine), and when tests are enabled a couple more > libraries are created. Since they all probably share LIB_LINK_FLAGS I > expect any problems there to also be fixed by this p

Re: 01/01: gnu: Add gst-libav.

2015-04-15 Thread Ludovic Courtès
Mark H Weaver skribis: > I would very much prefer to have just one of ffmpeg/libav in Guix, for > all the reasons given above against code duplication. Agreed. Ludo’.

Re: [PATCH] Add FASTX Toolkit.

2015-04-15 Thread Ludovic Courtès
Ricardo Wurmus skribis: > "fastx-toolkit" installs three m4 files to "$out/share/aclocal", and > libgtextutils installs an empty "$out/share/aclocal" directoy. I > reported this upstream, but I did not add a phase to remove these files, > because I think it's not a big deal. Is this okay or sho

Re: [PATCH] gnu: linux-libre-headers: Update to 3.18.11

2015-04-15 Thread Ludovic Courtès
Mark H Weaver skribis: > "Jason Self" writes: >> Also, since Alexandre Oliva periodically removes tarballs so as to >> free up space on the virtual machine that hosts these, it might also >> be a good idea to put a copy of linux-libre-3.18.11-gnu.tar.xz in >> http://alpha.gnu.org/gnu/guix/mirror

Re: [PATCH] profiles: Generate GHC's package database cache.

2015-04-15 Thread Ludovic Courtès
Federico Beffa skribis: > On top of the mentioned cases above, there are many programs making use > of caches. Some are: > > * GLib's IO modules normally use a cache file 'giomodule.cache'. We set > the env. var. GIO_EXTRA_MODULES, but it's use is explicitly > discouraged by the project. > >

Re: Self-contained Guix tarball

2015-04-15 Thread Ludovic Courtès
I’ve documented installation from the binary tarball (which I plan to distribute for the next release) in commit 09722b1. Please let me know what you think. Ludo’. 2.1 Binary Installation === This section describes how to install Guix on an arbitrary system from a self-cont

Re: Self-contained Guix tarball

2015-04-15 Thread Pjotr Prins
Great :). I would make it a little clearer that this is 'bootstrapping' and hype it a little more that now there is no reason NOT to install Guix. Only 100Mb on your HDD. The warning about overwriting a Guix installation should be earlier. Maybe point out that if you want to move a package with de

Re: LVM support

2015-04-15 Thread Tomáš Čech
On Wed, Apr 15, 2015 at 02:32:14PM +0200, Ludovic Courtès wrote: Tomáš Čech skribis: as project for my Hackweek in SUSE I decided to spend my time on LVM support in GuixSD - something I miss greatly. This also means that I'll have much less time for that after this week :( Well this is nice