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
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
Oops! Sent from fsf.org email address.
Please CC this email address when replying.
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?
--
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
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
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
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))
>
>