Re: [GSoC] Integrating npm into the Guix ecosystem

2016-06-06 Thread ng0
On 2016-06-07(02:56:34AM+0200), Jelle Licht wrote: > > Greetings Guix hackers, > > It has been some time since my last mail to this list, so I wanted to > share what I have been up to. For the people who might want to watch > along after today, I will be posting the changes that should not break >

Re: [GSoC] Integrating npm into the Guix ecosystem

2016-06-06 Thread John Darrington
Hello Jelle, I suggest that you avoid the word "ecosystem" when describing the work of people who have designed and contributed to Guix. See https://www.gnu.org/philosophy/words-to-avoid#Ecosystem J' -- Avoid eavesdropping. Send strong encryted email. PGP Public key ID: 1024D/2DE827B3

Re: [PATCH] gnu: Add python-ply and python2-ply.

2016-06-06 Thread Leo Famulari
On Tue, Jun 07, 2016 at 01:01:10AM +0200, Danny Milosavljevic wrote: Thanks for the patch! > * gnu/packages/python.scm (python-ply, python2-ply): New variables. > +(uri (string-append > + "https://pypi.python.org/packages/96/e0/; > + >

[GSoC] Integrating npm into the Guix ecosystem

2016-06-06 Thread Jelle Licht
Greetings Guix hackers, It has been some time since my last mail to this list, so I wanted to share what I have been up to. For the people who might want to watch along after today, I will be posting the changes that should not break everything immediately to [1]. (Apologies for it being

[PATCH] gnu: Add python-ply and python2-ply.

2016-06-06 Thread Danny Milosavljevic
gnu: Add python-ply and python2-ply. * gnu/packages/python.scm (python-ply, python2-ply): New variables. --- gnu/packages/python.scm | 27 +++ 1 file changed, 27 insertions(+) diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index dfbf2cc..3ca2a86 100644 ---

Re: Hack font family for GuixSD.

2016-06-06 Thread Dmitry Nikolaev
> > Could you send a update? Thanks! > See "[PATCH] Hack font." Dmitry

[PATCH] Hack font.

2016-06-06 Thread Dmitry Nikolaev
I've added Hack font family to fonts.scm. Patch in the attachment. Dmitry From 772fc5f4d5708188c3e863bff6486b8687e8bcd6 Mon Sep 17 00:00:00 2001 From: 8p8c Date: Mon, 6 Jun 2016 23:27:10 +0300 Subject: [PATCH] Add Hack font. --- gnu/packages/fonts.scm | 53

Re: [PATCH] gnu: Add nethack.

2016-06-06 Thread Kei Kebreau
On Sat, 04 Jun 2016 23:15:57 +0200 l...@gnu.org (Ludovic Courtès) wrote: > Hi! > > Kei Kebreau skribis: > > > From b728e078408f17136e8a4c3344b606e8f152b9e4 Mon Sep 17 00:00:00 > > 2001 From: Kei Kebreau > > Date: Tue, 31 May 2016 17:42:28 -0400 > >

Re: [PATCH 3/5] gnu: Add gwenhywfar.

2016-06-06 Thread Efraim Flashner
On Mon, Jun 06, 2016 at 05:19:16PM +0200, Ricardo Wurmus wrote: > > Leo Famulari writes: > > > On Mon, Jun 06, 2016 at 03:22:59PM +0200, Ricardo Wurmus wrote: > >> * gnu/packages/gnucash.scm (gwenhywfar): New variable. > > > >> +;; The license includes an explicit

Re: [PATCH 4/5] gnu: Add AqBanking.

2016-06-06 Thread Ricardo Wurmus
Leo Famulari writes: > On Mon, Jun 06, 2016 at 03:23:00PM +0200, Ricardo Wurmus wrote: >> * gnu/packages/gnucash.scm (aqbanking): New variable. > >> +;; AqBanking is licensed under the GPLv2 or GPLv3 >> +(license (list license:gpl2+ license:gpl3+ > > Should it be

Re: [PATCH 3/5] gnu: Add gwenhywfar.

2016-06-06 Thread Ricardo Wurmus
Leo Famulari writes: > On Mon, Jun 06, 2016 at 03:22:59PM +0200, Ricardo Wurmus wrote: >> * gnu/packages/gnucash.scm (gwenhywfar): New variable. > >> +;; The license includes an explicit additional permission to compile and >> +;; distribute this library with the

[PATCH] gnu: base: Add glibc-for-target macro.

2016-06-06 Thread Manolis Ragkousis
Hello everyone, This patch is from wip-hurd. It offers a unified way to packages to access the libc without worrying about the kernel. This patches applies on core-updates. Note that you have to run make clean && make after applying this patch. Thank you, Manolis From

Re: [PATCH 3/5] gnu: Add gwenhywfar.

2016-06-06 Thread Leo Famulari
On Mon, Jun 06, 2016 at 03:22:59PM +0200, Ricardo Wurmus wrote: > * gnu/packages/gnucash.scm (gwenhywfar): New variable. > +;; The license includes an explicit additional permission to compile and > +;; distribute this library with the OpenSSL Toolkit. > +(license license:lgpl2.1+)))

Re: [PATCH 4/5] gnu: Add AqBanking.

2016-06-06 Thread Leo Famulari
On Mon, Jun 06, 2016 at 03:23:00PM +0200, Ricardo Wurmus wrote: > * gnu/packages/gnucash.scm (aqbanking): New variable. > +;; AqBanking is licensed under the GPLv2 or GPLv3 > +(license (list license:gpl2+ license:gpl3+ Should it be (list license:gpl2 license:gpl3) in that case?

Re: [PATCH] Add msgpack

2016-06-06 Thread Leo Famulari
On Mon, May 30, 2016 at 03:50:41PM -0500, Lukas Gradl wrote: > * gnu/packages/serialization.scm (msgpack): New variable. > +(inputs > + `(("zlib" ,zlib))) I noticed that the output does not refer to zlib: $ guix gc --references $(./pre-inst-env guix build msgpack)

[PATCH 5/5] gnu: gnucash: Add support for AqBanking.

2016-06-06 Thread Ricardo Wurmus
* gnu/packages/gnucash.scm (gnucash)[inputs]: Add aqbanking. [arguments]: Add configure flag to enable aqbanking. --- gnu/packages/gnucash.scm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/gnu/packages/gnucash.scm b/gnu/packages/gnucash.scm index 06a2261..5bac5a1 100644

[PATCH 4/5] gnu: Add AqBanking.

2016-06-06 Thread Ricardo Wurmus
* gnu/packages/gnucash.scm (aqbanking): New variable. --- gnu/packages/gnucash.scm | 43 +++ 1 file changed, 43 insertions(+) diff --git a/gnu/packages/gnucash.scm b/gnu/packages/gnucash.scm index 25801aa..06a2261 100644 --- a/gnu/packages/gnucash.scm +++

[PATCH 3/5] gnu: Add gwenhywfar.

2016-06-06 Thread Ricardo Wurmus
* gnu/packages/gnucash.scm (gwenhywfar): New variable. --- gnu/packages/gnucash.scm | 43 +++ 1 file changed, 43 insertions(+) diff --git a/gnu/packages/gnucash.scm b/gnu/packages/gnucash.scm index c39324c..25801aa 100644 --- a/gnu/packages/gnucash.scm +++

[PATCH 2/5] gnu: xmlsec: Enable gnutls support.

2016-06-06 Thread Ricardo Wurmus
* gnu/packages/xml.scm (xmlsec)[native-inputs]: Add pkg-config. --- gnu/packages/xml.scm | 7 +-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/gnu/packages/xml.scm b/gnu/packages/xml.scm index dc5c60d..43072dc 100644 --- a/gnu/packages/xml.scm +++ b/gnu/packages/xml.scm @@

[PATCH 0/5] gnucash: Add AqBanking support.

2016-06-06 Thread Ricardo Wurmus
Hi Guix, this patch set adds AqBanking to Gnucash. AqBanking adds online banking support to Gnucash, allowing people with German bank accounts to download transactions and balances directly from their banks. ~~ Ricardo Ricardo Wurmus (5): gnu: gnucash: Add "license:" prefix. gnu: xmlsec:

[PATCH 1/5] gnu: gnucash: Add "license:" prefix.

2016-06-06 Thread Ricardo Wurmus
* gnu/packages/gnucash.scm: Import licenses with "license:" prefix. (gnucash)[license]: Add prefix. --- gnu/packages/gnucash.scm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gnu/packages/gnucash.scm b/gnu/packages/gnucash.scm index 5c0ce4f..c39324c 100644 ---

Re: [Patch] go@1.4 Updated patch

2016-06-06 Thread Andy Wingo
On Mon 06 Jun 2016 11:05, Alex Vong writes: > I think match-lambda is not documented in the guile manual (it only > appears in an example). While its usage is more or less the same as in > racket, I think it should be documented. What is your idea? Yes it should be

Re: Implementing guix system rollback / switch-generation

2016-06-06 Thread Leo Famulari
On Sun, Jun 05, 2016 at 03:29:22PM -0700, Chris Marusich wrote: > More generally, are people satisfied with the way system rollback is > currently implemented in GuixSD? Do you think that the mechanism I'm > proposing is a bad idea? I'd hate to try to implement something that > nobody else

Re: GCC bootstrap failure on ARM

2016-06-06 Thread Ludovic Courtès
Hello! For the record, at this point I’m mostly relying on the GCC developers to help with this failure. I’ve reported the issue at: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=71399 Ludo’.

Re: [Patch] go@1.4 Updated patch

2016-06-06 Thread Andy Wingo
Hi :) Looking good! I have some style nits :) On Fri 03 Jun 2016 19:39, Matthew Jordan writes: > + ;; Removing net/ tests > + (for-each > +(lambda (srcfile) > + (let ((srcfile (string-append "net/"

Re: Implementing guix system rollback / switch-generation

2016-06-06 Thread Ludovic Courtès
Hi Chris, Chris Marusich skribis: > Basically, I think there should be a command like "guix system > roll-back" which does the opposite of "guix system reconfigure > config.scm". The rollback command should not require an operating > system configuration file. I think

Re: [PATCH 2/4] gnu: ruby-activesupport: Add 'ruby-tzinfo-data' propagated input.

2016-06-06 Thread Ludovic Courtès
Ben Woodcroft skribis: > * gnu/packages/ruby.scm (ruby-activesupport)[propagated-inputs]: Add > 'ruby-tzinfo-data'. This one LGTM, thanks. :-) Ludo’.

gnome-tweak-tool tweaks

2016-06-06 Thread Jan Nieuwenhuizen
Hi, When starting gnome-tweak-tool, it prints a warning GLib-GIO-Message: Using the 'memory' GSettings backend. Your settings will not be saved or shared with other applications. The patch below has gnome-tweak-tool communicate with gsettings instead of using the `memory. I'm not sending