Re: Merging guix.el

2014-09-03 Thread Alex Kost
Ludovic Courtès (2014-09-03 11:09 +0400) wrote: > Alex Kost skribis: [...] >> I don't have a preference here. I can do a single commit if it is more >> appropriate. Would the following commit message be OK? > > Yes, that would be perfect. > > Feel free to proceed whenever is convenient for yo

Re: Packaging JavaScript libraries

2014-09-03 Thread Ludovic Courtès
Dave Thompson skribis: > JavaScript source files are typically bundled in a web applications > source tree or bundled by a JavaScript only package manager such as > Bower. Would it make sense to package JavaScript libraries in Guix? > I'm not sure how to approach the packaging of JavaScript at t

Re: Packaging JavaScript libraries

2014-09-03 Thread Thompson, David
Oops! Sent from fsf.org email address. Please CC this email address when replying.

Packaging JavaScript libraries

2014-09-03 Thread Dave Thompson
JavaScript source files are typically bundled in a web applications source tree or bundled by a JavaScript only package manager such as Bower. Would it make sense to package JavaScript libraries in Guix? I'm not sure how to approach the packaging of JavaScript at the system level. Thoughts? --

Re: [PATCH] gnu: Add postgresql.

2014-09-03 Thread David Thompson
Ludovic Courtès writes: > David Thompson skribis: > >> From 4b760e9504f608ba460b85413206dbd5658fe78c Mon Sep 17 00:00:00 2001 >> From: David Thompson >> Date: Tue, 2 Sep 2014 19:06:45 -0400 >> Subject: [PATCH] gnu: Add postgresql. >> >> * gnu/packages/postgresql.scm: New file. >> * gnu-system.a

Re: Unable to add large (1.74 GB) file to store on i686

2014-09-03 Thread Ludovic Courtès
m...@netris.org skribis: > Finally I decided to use 'wget' to download it, so that I could resume > partial transfers. I have the entire file now, but all of my attempts > to add it to the store fail. "guix download file:///path/to/file" > reports: > > guix download: error: sendfile: Broken pi

Re: [PATCH] gnu: Add postgresql.

2014-09-03 Thread Ludovic Courtès
David Thompson skribis: > From 4b760e9504f608ba460b85413206dbd5658fe78c Mon Sep 17 00:00:00 2001 > From: David Thompson > Date: Tue, 2 Sep 2014 19:06:45 -0400 > Subject: [PATCH] gnu: Add postgresql. > > * gnu/packages/postgresql.scm: New file. > * gnu-system.am (GNU_SYSTEM_MODULES): Add it. LGT

Re: Merging guix.el

2014-09-03 Thread Ludovic Courtès
Alex Kost skribis: > Ludovic Courtès (2014-09-01 16:10 +0400) wrote: [...] >> Would ‘vlist-fold’ work? >> >> scheme@(guile-user)> (vhash-cons 'a 1 (vhash-cons 'b 2 (vhash-cons 'a 3 >> vlist-null))) >> $2 = # >> scheme@(guile-user)> (vlist-fold cons '() $2) >> $3 = ((a . 3) (b . 2) (a . 1)) > >