[PATCH] Allow choosing the nl_NL.UTF-8 locale.

2021-08-28 Thread Maxime Devos
It's 100% translated according to . Warning: I don't have a Guix Data Service to test this with. * guix-data-service/model/package-metadata.scm (locales): Add nl_NL.utf-8 --- guix-data-service/model/package-metadata.scm | 1 + 1 file ch

Re: goproxy notes

2021-08-28 Thread raingloom
On Fri, 27 Aug 2021 09:56:30 -0500 Katherine Cox-Buday wrote: > raingloom writes: > > > do we depend on this? if yes, it might be a good idea to disable the > > proxy in the importer. > > sorry, i don't have time to look into it myself right now, so i'm > > dumping it here. > > > > https://drew

Re: How to Write Empty File in Build Phase?

2021-08-28 Thread Tobias Geerinckx-Rice
Hi Antwane, (with-output-to-file "__init__.py" (lambda () (newline)) => (with-output-to-file "__init__.py" newline) Untested, but NEWLINE taking #:optional arguments should not make it any less of a thunk. Kind regards, T G-R Sent from a Web browser. Excuse or enjoy my brevity.

Re: How to Write Empty File in Build Phase?

2021-08-28 Thread Antwane Mason
muradm, Thank you so much for your help! That worked like a charm! Just needed to adjust the second argument of with-output-to-file so that it takes a lambda that returns (newline). Here is the resulting package definition that successfully builds. (define-public python-verspec (package (na