missing input and more

2015-02-04 Thread sleep_walker
Hi Guix, during my packaging attempts of connman (which looks good so far) I found that gnutls is missing "install-time" dependency - zlib. 1] ldd shows run-time dependency: $ ldd /gnu/store/0mfgwxgqyhlvi5xyi1j2lbr3ygczsdyp-gnutls-3.2.21/lib/libgnutls.so | grep libz libz.so.1 => /gnu/s

Helping programs find their icons

2015-02-04 Thread Mark H Weaver
Hello Guix, I've investigated why wicd-gtk is unable to find its icons and fixed it. Looking at the output of strace, I found that when wicd-gtk looks for icons, it searches for 'index.theme' files in many different directories of the form: /gnu/store/.../share/icons/hicolor/ The icons it want

Re: A secure multimedia workstation

2015-02-04 Thread 宋文武
Hi! 2015-02-02 18:11 GMT+08:00 Dirk Scheuring : > > Hello all, > > my name is Dirk Scheuring, and I come out of the "conventional" world of > professional audio and video production and performance - a world which > is dominated by proprietary programs: Adobe Premiere, Logic Pro Audio, > Ableton L

Re: [PATCHES] Add wicd and wicd-service

2015-02-04 Thread Mark H Weaver
Mark H Weaver writes: > * Unless run as root, the user interfaces to configure wicd via dbus > always fail. The wicd dbus configuration file is supposed to allow > anyone in the 'netdev' group to access and configure the daemon, but > this doesn't work. I could use some help debugging thi

Re: [PATCHES] Add wicd and wicd-service

2015-02-04 Thread Mark H Weaver
I've pushed these to master. Mark H Weaver writes: > Anyway, if you want to try this out, here's what you need to change in > your OS configuration: > > * (use-modules (gnu packages wicd) >(gnu services networking)) > * Add wicd to the list passed to 'dbus-service'. > * Add (wicd

Guix System Distribution now FSF-endorsed

2015-02-04 Thread Ludovic Courtès
"jaccas (pjfcl)" skribis: > On the distribution have been included in the FSF list and for the > chosen name. Simple is better. Thanks! I actually forgot to mention it on this list: http://www.fsf.org/news/fsf-adds-guix-system-distribution-to-list-of-endorsed-distributions http://www.gnu.

Re: [PATCHES] Add wicd and wicd-service

2015-02-04 Thread Ludovic Courtès
Mark H Weaver skribis: > Mark H Weaver writes: > >> It mostly works, and I'm using it right now, but there are still some >> remaining issues: >> >> * Unless run as root, the user interfaces to configure wicd via dbus >> always fail. The wicd dbus configuration file is supposed to allow >>

Re: [PATCHES] Add wicd and wicd-service

2015-02-04 Thread Ludovic Courtès
Mark H Weaver skribis: > This preliminary patch set adds wicd and wicd-service. Yay! [...] > From 42884490782c9956912e1239f9cc71f72b921ba9 Mon Sep 17 00:00:00 2001 > From: Mark H Weaver > Date: Tue, 3 Feb 2015 23:35:42 -0500 > Subject: [PATCH 1/3] gnu: wpa-supplicant: Add dbus support; add >

Re: [PATCH] Add 'waf-build-system'.

2015-02-04 Thread Ludovic Courtès
rekado skribis: > Ludovic Courtès writes: > >> Ricardo Wurmus skribis: >> >>> Unlike the Python build system, however, there is a configure phase, and >>> not everything important happens during the install phase. >> >> OK. Did you find it more appropriate to extend ‘gnu-build-system’ >> rather

Name service switch configuration

2015-02-04 Thread Ludovic Courtès
Hello Guix! Commit 996ed73 adds support to configure libc’s name service switch (NSS). To enable something like nss-mdns (for the resolution of ‘.local’ names), one needs two things: 1. Add this snippet to the ‘operating-system’ declaration: (name-service-switch (name-service-switch

[PATCH] utils: Strip duplicates from search path.

2015-02-04 Thread Eric Bavier
Hello Guix, The attached patch (for core-updates) removes duplicate entries from search paths. I believe this is safe. I was encountering "command line too long" errors while trying to build several higher-level perl modules, and noticed that the values being set for PERL5LIB, PATH, and oth

Congratulations

2015-02-04 Thread jaccas (pjfcl)
Congrats for you guys! On the distribution have been included in the FSF list and for the chosen name. Simple is better. Great job! Tanks. Paulo

Re: [PATCH] gnu: Add libffcall

2015-02-04 Thread Mark H Weaver
l...@gnu.org (Ludovic Courtès) writes: >> +(license l:gpl2))) > > I think this is gpl2+ (really, any version) because the license headers > to not specify any particular version. Okay. Pushed, thanks! Mark

Re: [PATCH] Add support for 'cvs-fetch' method in origins

2015-02-04 Thread Mark H Weaver
l...@gnu.org (Ludovic Courtès) writes: >> +(gexp->derivation (or name "cvs-checkout") build >> + #:system system >> + ;; FIXME: See . >> + ;;#:local-build? #t > > [...] > >> + #:loca

Re: [PATCH] gnu: gnutls: Configure location of system-wide trust store

2015-02-04 Thread Mark H Weaver
Andreas Enge writes: > On Mon, Feb 02, 2015 at 06:11:02PM -0500, Mark H Weaver wrote: >> + >> "--with-default-trust-store-file=/etc/ssl/certs/ca-certificates.crt"))) > > I would suggest to use --with-default-trust-store-dir=/etc/ssl/certs instead. > The option is available in gnutls-

Re: 0.8.1 kernel panics

2015-02-04 Thread Daniel Pimentel
On 2015-02-04 00:55, Omar Radwan wrote: I think I know your problem. In your filesystems declaration, (file-systems (cons (file-system (device "root") (title 'label) (mount-point "/") (type "ext4"))

Re: [PATCH] gnu: gnutls: Configure location of system-wide trust store

2015-02-04 Thread Andreas Enge
PS: Ideally, I still think it would be optimal if gnutls used a per user environment variable, in the spirit of liberating users and not system administrators. I will enquire. But for the time being, the global specification looks better than nothing. When I have some time, I will t

Re: [PATCH] gnu: gnutls: Configure location of system-wide trust store

2015-02-04 Thread Andreas Enge
Hello, On Mon, Feb 02, 2015 at 06:11:02PM -0500, Mark H Weaver wrote: > + > "--with-default-trust-store-file=/etc/ssl/certs/ca-certificates.crt"))) I would suggest to use --with-default-trust-store-dir=/etc/ssl/certs instead. The option is available in gnutls-3.3.12, which I am build

Re: We need to generalize 'package-with-python2'

2015-02-04 Thread Eric Bavier
On Tue, 03 Feb 2015 18:42:03 -0500 Mark H Weaver wrote: > The 'python-dbus' package (called 'dbus-python' upsteam) uses the > 'gnu-build-system', and like most other python libraries, there will > be two variants: 'python-dbus' and 'python2-dbus'. Unfortunately, > 'package-with-python2' only wor

Re: [PATCHES] Add wicd and wicd-service

2015-02-04 Thread Mark H Weaver
Mark H Weaver writes: > It mostly works, and I'm using it right now, but there are still some > remaining issues: > > * Unless run as root, the user interfaces to configure wicd via dbus > always fail. The wicd dbus configuration file is supposed to allow > anyone in the 'netdev' group to ac

[PATCHES] Add wicd and wicd-service

2015-02-04 Thread Mark H Weaver
Hello Guix, This preliminary patch set adds wicd and wicd-service. The first patch adds dbus support to wpa-supplicant, while preserving the lightweight wpa-supplicant without dbus under a different name: wpa-supplicant-light. The second patch adds the wicd package, although there are still some